00001 <?php 00014 class UncategorizedTemplatesPage extends UncategorizedPagesPage { 00015 00016 var $requestedNamespace = NS_TEMPLATE; 00017 00018 public function getName() { 00019 return 'Uncategorizedtemplates'; 00020 } 00021 00022 } 00023 00029 function wfSpecialUncategorizedtemplates() { 00030 list( $limit, $offset ) = wfCheckLimits(); 00031 $utp = new UncategorizedTemplatesPage(); 00032 $utp->doQuery( $offset, $limit ); 00033 }