Bug 23699: Add trailing \n at the end of <div>s in wrapWikiMsg()
[lhc/web/wiklou.git] / includes / specials / SpecialTags.php
1 <?php
2
3 if (!defined('MEDIAWIKI'))
4 die;
5
6 class SpecialTags extends SpecialPage {
7
8 function __construct() {
9 parent::__construct( 'Tags' );
10 }
11
12 function execute( $par ) {
13 global $wgOut, $wgUser, $wgMessageCache;
14
15 $wgMessageCache->loadAllMessages();
16
17 $sk = $wgUser->getSkin();
18 $wgOut->setPageTitle( wfMsg( 'tags-title' ) );
19 $wgOut->wrapWikiMsg( "<div class='mw-tags-intro'>\n$1\n</div>", 'tags-intro' );
20
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' ) )
27 );
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' ) );
30
31 while ( $row = $res->fetchObject() ) {
32 $html .= $this->doTagRow( $row->ct_tag, $row->hitcount );
33 }
34
35 foreach( ChangeTags::listDefinedTags() as $tag ) {
36 $html .= $this->doTagRow( $tag, 0 );
37 }
38
39 $wgOut->addHTML( Xml::tags( 'table', array( 'class' => 'wikitable mw-tags-table' ), $html ) );
40 }
41
42 function doTagRow( $tag, $hitcount ) {
43 static $sk=null, $doneTags=array();
44 if (!$sk) {
45 global $wgUser;
46 $sk = $wgUser->getSkin();
47 }
48
49 if ( in_array( $tag, $doneTags ) ) {
50 return '';
51 }
52
53 global $wgLang;
54
55 $newRow = '';
56 $newRow .= Xml::tags( 'td', null, Xml::element( 'tt', null, $tag ) );
57
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 );
61
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 );
66
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 );
70
71 $doneTags[] = $tag;
72
73 return Xml::tags( 'tr', null, $newRow ) . "\n";
74 }
75 }