Tidy up the class
[mediawiki.git] / includes / specials / SpecialUncategorizedtemplates.php
blob7e6fd24b3bf47a4fadee2b067523a2969007f972
1 <?php
2 /**
3 * @file
4 * @ingroup SpecialPage
5 */
7 /**
8 * Special page lists all uncategorised pages in the
9 * template namespace
11 * @ingroup SpecialPage
12 * @author Rob Church <robchur@gmail.com>
14 class UncategorizedTemplatesPage extends UncategorizedPagesPage {
16 var $requestedNamespace = NS_TEMPLATE;
18 public function getName() {
19 return 'Uncategorizedtemplates';
24 /**
25 * Main execution point
27 function wfSpecialUncategorizedtemplates() {
28 list( $limit, $offset ) = wfCheckLimits();
29 $utp = new UncategorizedTemplatesPage();
30 $utp->doQuery( $offset, $limit );