* Convert "$dbw =& wfGetDB( DB_MASTER );" --> "$dbw = wfGetDB( DB_MASTER );" * convert "$skin =& $wgUser->getSkin();" --> "$skin = $wgUser->getSkin();" For the time being have not changed the function definitions of wfGetDB() or User::getSkin() [i.e. they are still both return-by-ref], so as to ensure the interface does not change for extensions [some of which may still be trying to run on PHP4 environments]. However presumably at some point this can be changed too. Also includes tiny tweak to newlines in parserTests - will show 1 rather than 2 newlines between the "Reading tests from" strings when in quiet mode.
46 lines
1 KiB
PHP
46 lines
1 KiB
PHP
<?php
|
|
/**
|
|
*
|
|
* @addtogroup SpecialPage
|
|
*/
|
|
|
|
/**
|
|
*
|
|
* @addtogroup SpecialPage
|
|
*/
|
|
class UnusedCategoriesPage extends QueryPage {
|
|
|
|
function getName() {
|
|
return 'Unusedcategories';
|
|
}
|
|
|
|
function getPageHeader() {
|
|
return '<p>' . wfMsg('unusedcategoriestext') . '</p>';
|
|
}
|
|
|
|
function getSQL() {
|
|
$NScat = NS_CATEGORY;
|
|
$dbr = wfGetDB( DB_SLAVE );
|
|
list( $categorylinks, $page ) = $dbr->tableNamesN( 'categorylinks', 'page' );
|
|
return "SELECT 'Unusedcategories' as type,
|
|
{$NScat} as namespace, page_title as title, page_title as value
|
|
FROM $page
|
|
LEFT JOIN $categorylinks ON page_title=cl_to
|
|
WHERE cl_from IS NULL
|
|
AND page_namespace = {$NScat}
|
|
AND page_is_redirect = 0";
|
|
}
|
|
|
|
function formatResult( $skin, $result ) {
|
|
$title = Title::makeTitle( NS_CATEGORY, $result->title );
|
|
return $skin->makeLinkObj( $title, $title->getText() );
|
|
}
|
|
}
|
|
|
|
/** constructor */
|
|
function wfSpecialUnusedCategories() {
|
|
list( $limit, $offset ) = wfCheckLimits();
|
|
$uc = new UnusedCategoriesPage();
|
|
return $uc->doQuery( $offset, $limit );
|
|
}
|
|
?>
|