]> scripts.mit.edu Git - autoinstalls/mediawiki.git/blob - includes/specials/SpecialUncategorizedcategories.php
Mediawiki 1.15.2
[autoinstalls/mediawiki.git] / includes / specials / SpecialUncategorizedcategories.php
1 <?php
2 /**
3  * @file
4  * @ingroup SpecialPage
5  */
6
7 /**
8  * implements Special:Uncategorizedcategories
9  * @ingroup SpecialPage
10  */
11 class UncategorizedCategoriesPage extends UncategorizedPagesPage {
12         function UncategorizedCategoriesPage() {
13                 $this->requestedNamespace = NS_CATEGORY;
14         }
15
16         function getName() {
17                 return "Uncategorizedcategories";
18         }
19 }
20
21 /**
22  * constructor
23  */
24 function wfSpecialUncategorizedcategories() {
25         list( $limit, $offset ) = wfCheckLimits();
26
27         $lpp = new UncategorizedCategoriesPage();
28
29         return $lpp->doQuery( $offset, $limit );
30 }