wiki.techinc.nl/includes/SpecialUncategorizedcategories.php
Nick Jenkins f9619da3f0 Yet more doc tweaks:
* 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.
2007-04-20 08:55:14 +00:00

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 );
}
?>