* Add @addtogroup tags to various classes, to try and group conceptually-related classes together. * Add brief descriptions to various Special pages, thanks to Phil Boswell. * Moving some docs to be right above the classes they represent, so that they are picked up.
37 lines
613 B
PHP
37 lines
613 B
PHP
<?php
|
|
/**
|
|
*
|
|
* @addtogroup SpecialPage
|
|
*/
|
|
|
|
/**
|
|
*
|
|
*/
|
|
require_once( "SpecialUncategorizedpages.php" );
|
|
|
|
/**
|
|
* implements Special:Uncategorizedcategories
|
|
* @addtogroup SpecialPage
|
|
*/
|
|
class UncategorizedCategoriesPage extends UncategorizedPagesPage {
|
|
function UncategorizedCategoriesPage() {
|
|
$this->requestedNamespace = NS_CATEGORY;
|
|
}
|
|
|
|
function getName() {
|
|
return "Uncategorizedcategories";
|
|
}
|
|
}
|
|
|
|
/**
|
|
* constructor
|
|
*/
|
|
function wfSpecialUncategorizedcategories() {
|
|
list( $limit, $offset ) = wfCheckLimits();
|
|
|
|
$lpp = new UncategorizedCategoriesPage();
|
|
|
|
return $lpp->doQuery( $offset, $limit );
|
|
}
|
|
|
|
?>
|