wiki.techinc.nl/includes/SpecialUncategorizedpages.php
Brion Vibber 0baa4a7f0c Revert r25768, r25771
I really don't like inserting bogus entries into the link tables, that looks fragile and generally horrifying.
2007-09-11 15:03:54 +00:00

57 lines
1.1 KiB
PHP

<?php
/**
*
* @addtogroup SpecialPage
*/
/**
* A special page looking for page without any category.
* @addtogroup SpecialPage
*/
class UncategorizedPagesPage extends PageQueryPage {
var $requestedNamespace = NS_MAIN;
function getName() {
return "Uncategorizedpages";
}
function sortDescending() {
return false;
}
function isExpensive() {
return true;
}
function isSyndicated() { return false; }
function getSQL() {
$dbr = wfGetDB( DB_SLAVE );
list( $page, $categorylinks ) = $dbr->tableNamesN( 'page', 'categorylinks' );
$name = $dbr->addQuotes( $this->getName() );
return
"
SELECT
$name as type,
page_namespace AS namespace,
page_title AS title,
page_title AS value
FROM $page
LEFT JOIN $categorylinks ON page_id=cl_from
WHERE cl_from IS NULL AND page_namespace={$this->requestedNamespace} AND page_is_redirect=0
";
}
}
/**
* constructor
*/
function wfSpecialUncategorizedpages() {
list( $limit, $offset ) = wfCheckLimits();
$lpp = new UncategorizedPagesPage();
return $lpp->doQuery( $offset, $limit );
}