SpecialUncategorizedcategories.php 548 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * @file
  4. * @ingroup SpecialPage
  5. */
  6. /**
  7. * implements Special:Uncategorizedcategories
  8. * @ingroup SpecialPage
  9. */
  10. class UncategorizedCategoriesPage extends UncategorizedPagesPage {
  11. function UncategorizedCategoriesPage() {
  12. $this->requestedNamespace = NS_CATEGORY;
  13. }
  14. function getName() {
  15. return "Uncategorizedcategories";
  16. }
  17. }
  18. /**
  19. * constructor
  20. */
  21. function wfSpecialUncategorizedcategories() {
  22. list( $limit, $offset ) = wfCheckLimits();
  23. $lpp = new UncategorizedCategoriesPage();
  24. return $lpp->doQuery( $offset, $limit );
  25. }