wiki.techinc.nl/includes/SpecialMostimages.php
Nick Jenkins f9619da3f0 Yet more doc tweaks:
* Add @addtogroup tags to various classes, to try and group conceptually-related classes together.
* Add brief descriptions to various Special pages, thanks to Phil Boswell.
* Moving some docs to be right above the classes they represent, so that they are picked up.
2007-04-20 08:55:14 +00:00

55 lines
1.1 KiB
PHP

<?php
/**
* @addtogroup SpecialPage
*
* @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
* @copyright Copyright © 2005, Ævar Arnfjörð Bjarmason
* @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
*/
/**
* implements Special:Mostimages
* @addtogroup SpecialPage
*/
class MostimagesPage extends ImageQueryPage {
function getName() { return 'Mostimages'; }
function isExpensive() { return true; }
function isSyndicated() { return false; }
function getSQL() {
$dbr = wfGetDB( DB_SLAVE );
$imagelinks = $dbr->tableName( 'imagelinks' );
return
"
SELECT
'Mostimages' as type,
" . NS_IMAGE . " as namespace,
il_to as title,
COUNT(*) as value
FROM $imagelinks
GROUP BY 1,2,3
HAVING COUNT(*) > 1
";
}
function getCellHtml( $row ) {
global $wgLang;
return wfMsgExt( 'nlinks', array( 'parsemag', 'escape' ),
$wgLang->formatNum( $row->value ) ) . '<br />';
}
}
/**
* Constructor
*/
function wfSpecialMostimages() {
list( $limit, $offset ) = wfCheckLimits();
$wpp = new MostimagesPage();
$wpp->doQuery( $offset, $limit );
}
?>