blob: 189b9d8bd91b5b521e5af2797ec09cdc7619162e (
plain)
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
|
<?php
/*
* @file
* @ingroup SpecialPage
*/
/**
* Querypage that lists the most wanted files - implements Special:Wantedfiles
*
* @ingroup SpecialPage
*
* @author Soxred93 <soxred93@gmail.com>
* @copyright Copyright © 2008, Soxred93
* @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
*/
class WantedFilesPage extends WantedQueryPage {
function getName() {
return 'Wantedfiles';
}
function getSQL() {
$dbr = wfGetDB( DB_SLAVE );
list( $imagelinks, $page ) = $dbr->tableNamesN( 'imagelinks', 'page' );
$name = $dbr->addQuotes( $this->getName() );
return
"
SELECT
$name as type,
" . NS_FILE . " as namespace,
il_to as title,
COUNT(*) as value
FROM $imagelinks
LEFT JOIN $page ON il_to = page_title AND page_namespace = ". NS_FILE ."
WHERE page_title IS NULL
GROUP BY il_to
";
}
}
/**
* constructor
*/
function wfSpecialWantedFiles() {
list( $limit, $offset ) = wfCheckLimits();
$wpp = new WantedFilesPage();
$wpp->doQuery( $offset, $limit );
}
|