* Reorganised the includes directory, creating subdirectories db, parser and specials
[lhc/web/wiklou.git] / includes / specials / Longpages.php
1 <?php
2 /**
3 * @file
4 * @ingroup SpecialPage
5 */
6
7 /**
8 *
9 * @ingroup SpecialPage
10 */
11 class LongPagesPage extends ShortPagesPage {
12
13 function getName() {
14 return "Longpages";
15 }
16
17 function sortDescending() {
18 return true;
19 }
20 }
21
22 /**
23 * constructor
24 */
25 function wfSpecialLongpages() {
26 list( $limit, $offset ) = wfCheckLimits();
27
28 $lpp = new LongPagesPage();
29
30 $lpp->doQuery( $offset, $limit );
31 }