blob: a571d68388db220781e20504072ef9ae0f70b21d (
plain) (
blame)
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
|
<?php
require_once( "QueryPage.php" );
class DeadendPagesPage extends PageQueryPage {
function getName( ) {
return "Deadendpages";
}
# LEFT JOIN is expensive
function isExpensive( ) {
return 1;
}
function sortDescending() {
return false;
}
function getSQL() {
return "SELECT 'Deadendpages' as type, cur_namespace AS namespace, cur_title as title, cur_title AS value " .
"FROM cur LEFT JOIN links ON cur_id = l_from " .
"WHERE l_from IS NULL " .
"AND cur_namespace = 0 " .
"AND cur_is_redirect = 0";
}
}
function wfSpecialDeadendpages() {
list( $limit, $offset ) = wfCheckLimits();
$depp = new DeadendPagesPage();
return $depp->doQuery( $offset, $limit );
}
?>
|