00001 <?php 00011 class UncategorizedCategoriesPage extends UncategorizedPagesPage { 00012 function UncategorizedCategoriesPage() { 00013 $this->requestedNamespace = NS_CATEGORY; 00014 } 00015 00016 function getName() { 00017 return "Uncategorizedcategories"; 00018 } 00019 } 00020 00024 function wfSpecialUncategorizedcategories() { 00025 list( $limit, $offset ) = wfCheckLimits(); 00026 00027 $lpp = new UncategorizedCategoriesPage(); 00028 00029 return $lpp->doQuery( $offset, $limit ); 00030 }