1234567891011121314151617181920212223242526272829303132 |
- <?php
- /**
- * @file
- * @ingroup SpecialPage
- */
- /**
- *
- * @ingroup SpecialPage
- */
- class LongPagesPage extends ShortPagesPage {
- function getName() {
- return "Longpages";
- }
- function sortDescending() {
- return true;
- }
- }
- /**
- * constructor
- */
- function wfSpecialLongpages() {
- list( $limit, $offset ) = wfCheckLimits();
- $lpp = new LongPagesPage();
- $lpp->doQuery( $offset, $limit );
- }
|