1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
<?php
/**
* @package MediaWiki
* @subpackage 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
*/
/**
* @package MediaWiki
* @subpackage SpecialPage
*/
class MostimagesPage extends QueryPage {
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 formatResult( $skin, $result ) {
global $wgLang, $wgContLang;
$nt = Title::makeTitle( $result->namespace, $result->title );
$text = $wgContLang->convert( $nt->getPrefixedText() );
$plink = $skin->makeKnownLink( $nt->getPrefixedText(), $text );
$nl = wfMsgExt( 'nlinks', array( 'parsemag', 'escape'),
$wgLang->formatNum ( $result->value ) );
$nlink = $skin->makeKnownLink( $nt->getPrefixedText() . '#filelinks', $nl );
return wfSpecialList($plink, $nlink);
}
}
/**
* Constructor
*/
function wfSpecialMostimages() {
list( $limit, $offset ) = wfCheckLimits();
$wpp = new MostimagesPage();
$wpp->doQuery( $offset, $limit );
}
?>
|