Localisation updates for core and extension messages from translatewiki.net (2009...
[mediawiki.git] / includes / specials / SpecialTags.php
blob57feeae7a3cc99c04749941de1fff6e217631212
1 <?php
3 if (!defined('MEDIAWIKI'))
4 die;
6 class SpecialTags extends SpecialPage {
8 function __construct() {
9 parent::__construct( 'Tags' );
12 function execute( $par ) {
13 global $wgOut, $wgUser, $wgMessageCache;
15 $wgMessageCache->loadAllMessages();
17 $sk = $wgUser->getSkin();
18 $wgOut->setPageTitle( wfMsg( 'tags-title' ) );
19 $wgOut->wrapWikiMsg( "<div class='mw-tags-intro'>\n$1</div>", 'tags-intro' );
21 // Write the headers
22 $html = '';
23 $html = Xml::tags( 'tr', null, Xml::tags( 'th', null, wfMsgExt( 'tags-tag', 'parseinline' ) ) .
24 Xml::tags( 'th', null, wfMsgExt( 'tags-display-header', 'parseinline' ) ) .
25 Xml::tags( 'th', null, wfMsgExt( 'tags-description-header', 'parseinline' ) ) .
26 Xml::tags( 'th', null, wfMsgExt( 'tags-hitcount-header', 'parseinline' ) )
28 $dbr = wfGetDB( DB_SLAVE );
29 $res = $dbr->select( 'change_tag', array( 'ct_tag', 'count(*) as hitcount' ), array(), __METHOD__, array( 'GROUP BY' => 'ct_tag', 'ORDER BY' => 'hitcount DESC' ) );
31 while ( $row = $res->fetchObject() ) {
32 $html .= $this->doTagRow( $row->ct_tag, $row->hitcount );
35 foreach( ChangeTags::listDefinedTags() as $tag ) {
36 $html .= $this->doTagRow( $tag, 0 );
39 $wgOut->addHTML( Xml::tags( 'table', array( 'class' => 'wikitable mw-tags-table' ), $html ) );
42 function doTagRow( $tag, $hitcount ) {
43 static $sk=null, $doneTags=array();
44 if (!$sk) {
45 global $wgUser;
46 $sk = $wgUser->getSkin();
49 if ( in_array( $tag, $doneTags ) ) {
50 return '';
53 global $wgLang;
55 $newRow = '';
56 $newRow .= Xml::tags( 'td', null, Xml::element( 'tt', null, $tag ) );
58 $disp = ChangeTags::tagDescription( $tag );
59 $disp .= ' (' . $sk->link( Title::makeTitle( NS_MEDIAWIKI, "Tag-$tag" ), wfMsgHtml( 'tags-edit' ) ) . ')';
60 $newRow .= Xml::tags( 'td', null, $disp );
62 $desc = wfMsgExt( "tag-$tag-description", 'parseinline' );
63 $desc = wfEmptyMsg( "tag-$tag-description", $desc ) ? '' : $desc;
64 $desc .= ' (' . $sk->link( Title::makeTitle( NS_MEDIAWIKI, "Tag-$tag-description" ), wfMsgHtml( 'tags-edit' ) ) . ')';
65 $newRow .= Xml::tags( 'td', null, $desc );
67 $hitcount = wfMsgExt( 'tags-hitcount', array( 'parsemag' ), $wgLang->formatNum( $hitcount ) );
68 $hitcount = $sk->link( SpecialPage::getTitleFor( 'Recentchanges' ), $hitcount, array(), array( 'tagfilter' => $tag ) );
69 $newRow .= Xml::tags( 'td', null, $hitcount );
71 $doneTags[] = $tag;
73 return Xml::tags( 'tr', null, $newRow ) . "\n";