(bug 33321. Sort of) Adding a line to MediaWiki:Sidebar that contains a pipe, but...
[mediawiki.git] / includes / specials / SpecialMostlinkedcategories.php
blob7fb9dea9987f92d69bc472e11678538a4d33a947
1 <?php
2 /**
3 * Implements Special:Mostlinkedcategories
5 * Copyright © 2005, Ævar Arnfjörð Bjarmason
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * http://www.gnu.org/copyleft/gpl.html
22 * @file
23 * @ingroup SpecialPage
24 * @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
27 /**
28 * A querypage to show categories ordered in descending order by the pages in them
30 * @ingroup SpecialPage
32 class MostlinkedCategoriesPage extends QueryPage {
34 function __construct( $name = 'Mostlinkedcategories' ) {
35 parent::__construct( $name );
38 function isSyndicated() { return false; }
40 function getQueryInfo() {
41 return array (
42 'tables' => array ( 'category' ),
43 'fields' => array ( 'cat_title AS title',
44 NS_CATEGORY . ' AS namespace',
45 'cat_pages AS value' ),
49 function sortDescending() { return true; }
51 /**
52 * Fetch user page links and cache their existence
54 * @param $db DatabaseBase
55 * @param $res DatabaseResult
57 function preprocessResults( $db, $res ) {
58 $batch = new LinkBatch;
59 foreach ( $res as $row ) {
60 $batch->add( NS_CATEGORY, $row->title );
62 $batch->execute();
64 // Back to start for display
65 if ( $db->numRows( $res ) > 0 ) {
66 // If there are no rows we get an error seeking.
67 $db->dataSeek( $res, 0 );
71 /**
72 * @param $skin Skin
73 * @param $result
74 * @return string
76 function formatResult( $skin, $result ) {
77 global $wgContLang;
79 $nt = Title::makeTitle( NS_CATEGORY, $result->title );
80 $text = $wgContLang->convert( $nt->getText() );
82 $plink = Linker::link( $nt, htmlspecialchars( $text ) );
84 $nlinks = $this->msg( 'nmembers' )->numParams( $result->value )->escaped();
85 return $this->getLanguage()->specialList( $plink, $nlinks );