Merge "Use CamelCase in both ConfirmEmail and InvalidateEmail page names."
[mediawiki.git] / includes / specials / SpecialShortpages.php
blob8622b928c10661d4da7a5693006d5acc5fd6c3f7
1 <?php
2 /**
3 * Implements Special:Shortpages
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
20 * @file
21 * @ingroup SpecialPage
24 /**
25 * SpecialShortpages extends QueryPage. It is used to return the shortest
26 * pages in the database.
28 * @ingroup SpecialPage
30 class ShortPagesPage extends QueryPage {
32 function __construct( $name = 'Shortpages' ) {
33 parent::__construct( $name );
36 function isSyndicated() {
37 return false;
40 function getQueryInfo() {
41 return array (
42 'tables' => array ( 'page' ),
43 'fields' => array ( 'page_namespace AS namespace',
44 'page_title AS title',
45 'page_len AS value' ),
46 'conds' => array ( 'page_namespace' => NS_MAIN,
47 'page_is_redirect' => 0 ),
48 'options' => array ( 'USE INDEX' => 'page_redirect_namespace_len' )
52 function getOrderFields() {
53 return array( 'page_len' );
56 /**
57 * @param $db DatabaseBase
58 * @param $res
59 * @return void
61 function preprocessResults( $db, $res ) {
62 # There's no point doing a batch check if we aren't caching results;
63 # the page must exist for it to have been pulled out of the table
64 if ( !$this->isCached() || !$res->numRows() ) {
65 return;
68 $batch = new LinkBatch();
69 foreach ( $res as $row ) {
70 $batch->add( $row->namespace, $row->title );
72 $batch->execute();
74 $res->seek( 0 );
77 function sortDescending() {
78 return false;
81 function formatResult( $skin, $result ) {
82 $dm = $this->getLanguage()->getDirMark();
84 $title = Title::makeTitle( $result->namespace, $result->title );
86 $hlink = Linker::linkKnown(
87 $title,
88 $this->msg( 'hist' )->escaped(),
89 array(),
90 array( 'action' => 'history' )
92 $hlinkInParentheses = $this->msg( 'parentheses' )->rawParams( $hlink )->escaped();
94 if ( $this->isCached() ) {
95 $plink = Linker::link( $title );
96 $exists = $title->exists();
97 } else {
98 $plink = Linker::linkKnown( $title );
99 $exists = true;
102 $size = $this->msg( 'nbytes' )->numParams( $result->value )->escaped();
104 return $exists
105 ? "${hlinkInParentheses} {$dm}{$plink} {$dm}[{$size}]"
106 : "<del>${hlinkInParentheses} {$dm}{$plink} {$dm}[{$size}]</del>";