*/ /** * Special page lists all uncategorised pages in the * template namespace * * @ingroup SpecialPage */ class UncategorizedTemplatesPage extends UncategorizedPagesPage { var $requestedNamespace = NS_TEMPLATE; public function getName() { return 'Uncategorizedtemplates'; } } /** * Main execution point */ function wfSpecialUncategorizedtemplates() { list( $limit, $offset ) = wfCheckLimits(); $utp = new UncategorizedTemplatesPage(); $utp->doQuery( $offset, $limit ); }