3 * Implements Special:Tags
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
21 * @ingroup SpecialPage
25 * A special page that lists tags for edits
27 * @ingroup SpecialPage
29 class SpecialTags
extends SpecialPage
{
31 function __construct() {
32 parent
::__construct( 'Tags' );
35 function execute( $par ) {
37 $this->outputHeader();
39 $out = $this->getOutput();
40 $out->setPageTitle( $this->msg( 'tags-title' ) );
41 $out->wrapWikiMsg( "<div class='mw-tags-intro'>\n$1\n</div>", 'tags-intro' );
44 $html = Xml
::tags( 'tr', null, Xml
::tags( 'th', null, $this->msg( 'tags-tag' )->parse() ) .
45 Xml
::tags( 'th', null, $this->msg( 'tags-display-header' )->parse() ) .
46 Xml
::tags( 'th', null, $this->msg( 'tags-description-header' )->parse() ) .
47 Xml
::tags( 'th', null, $this->msg( 'tags-hitcount-header' )->parse() )
49 $dbr = wfGetDB( DB_SLAVE
);
50 $res = $dbr->select( 'change_tag', array( 'ct_tag', 'hitcount' => 'count(*)' ),
51 array(), __METHOD__
, array( 'GROUP BY' => 'ct_tag', 'ORDER BY' => 'hitcount DESC' ) );
53 foreach ( $res as $row ) {
54 $html .= $this->doTagRow( $row->ct_tag
, $row->hitcount
);
57 foreach ( ChangeTags
::listDefinedTags() as $tag ) {
58 $html .= $this->doTagRow( $tag, 0 );
61 $out->addHTML( Xml
::tags( 'table', array( 'class' => 'wikitable mw-tags-table' ), $html ) );
64 function doTagRow( $tag, $hitcount ) {
65 static $doneTags = array();
67 if ( in_array( $tag, $doneTags ) ) {
71 $user = $this->getUser();
73 $newRow .= Xml
::tags( 'td', null, Xml
::element( 'code', null, $tag ) );
75 $disp = ChangeTags
::tagDescription( $tag );
76 if ( $user->isAllowed( 'editinterface' ) ) {
78 $editLink = Linker
::link( Title
::makeTitle( NS_MEDIAWIKI
, "Tag-$tag" ), $this->msg( 'tags-edit' )->escaped() );
79 $disp .= $this->msg( 'parentheses' )->rawParams( $editLink )->escaped();
81 $newRow .= Xml
::tags( 'td', null, $disp );
83 $msg = $this->msg( "tag-$tag-description" );
84 $desc = !$msg->exists() ?
'' : $msg->parse();
85 if ( $user->isAllowed( 'editinterface' ) ) {
87 $editDescLink = Linker
::link( Title
::makeTitle( NS_MEDIAWIKI
, "Tag-$tag-description" ), $this->msg( 'tags-edit' )->escaped() );
88 $desc .= $this->msg( 'parentheses' )->rawParams( $editDescLink )->escaped();
90 $newRow .= Xml
::tags( 'td', null, $desc );
92 $hitcount = $this->msg( 'tags-hitcount' )->numParams( $hitcount )->escaped();
93 $hitcount = Linker
::link( SpecialPage
::getTitleFor( 'Recentchanges' ), $hitcount, array(), array( 'tagfilter' => $tag ) );
94 $newRow .= Xml
::tags( 'td', null, $hitcount );
98 return Xml
::tags( 'tr', null, $newRow ) . "\n";
101 protected function getGroupName() {