3 * Implements Special:Mostinterwikis
5 * Copyright © 2012 Umherirrender
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
23 * @ingroup SpecialPage
24 * @author Umherirrender
28 * A special page that listed pages that have highest interwiki count
30 * @ingroup SpecialPage
32 class MostinterwikisPage
extends QueryPage
{
33 function __construct( $name = 'Mostinterwikis' ) {
34 parent
::__construct( $name );
37 public function isExpensive() {
41 function isSyndicated() {
45 public function getQueryInfo() {
51 'namespace' => 'page_namespace',
52 'title' => 'page_title',
55 'page_namespace' => MWNamespace
::getContentNamespaces()
57 'HAVING' => 'COUNT(*) > 1',
72 * Pre-fill the link cache
74 * @param IDatabase $db
75 * @param ResultWrapper $res
77 function preprocessResults( $db, $res ) {
78 # There's no point doing a batch check if we aren't caching results;
79 # the page must exist for it to have been pulled out of the table
80 if ( !$this->isCached() ||
!$res->numRows() ) {
84 $batch = new LinkBatch
;
85 foreach ( $res as $row ) {
86 $batch->add( $row->namespace, $row->title
);
90 // Back to start for display
96 * @param object $result
99 function formatResult( $skin, $result ) {
100 $title = Title
::makeTitleSafe( $result->namespace, $result->title
);
102 return Html
::element(
104 [ 'class' => 'mw-invalidtitle' ],
105 Linker
::getInvalidTitleDescription(
113 if ( $this->isCached() ) {
114 $link = Linker
::link( $title );
116 $link = Linker
::linkKnown( $title );
119 $count = $this->msg( 'ninterwikis' )->numParams( $result->value
)->escaped();
121 return $this->getLanguage()->specialList( $link, $count );
124 protected function getGroupName() {