12345678910111213141516171819202122232425262728293031323334 |
- <?php
- class UncategorizedTemplatesPage extends UncategorizedPagesPage {
- var $requestedNamespace = NS_TEMPLATE;
- public function getName() {
- return 'Uncategorizedtemplates';
- }
- }
- function wfSpecialUncategorizedtemplates() {
- list( $limit, $offset ) = wfCheckLimits();
- $utp = new UncategorizedTemplatesPage();
- $utp->doQuery( $offset, $limit );
- }
|