3736d6fc62cb38d4109c63e6eff09f83aaadd404
[lhc/web/wiklou.git] / includes / SpecialLongpages.php
1 <?php
2 /**
3 *
4 * @package MediaWiki
5 * @subpackage SpecialPage
6 */
7
8 /**
9 *
10 * @package MediaWiki
11 * @subpackage SpecialPage
12 */
13 class LongPagesPage extends ShortPagesPage {
14
15 function getName() {
16 return "Longpages";
17 }
18
19 function sortDescending() {
20 return true;
21 }
22 }
23
24 /**
25 * constructor
26 */
27 function wfSpecialLongpages()
28 {
29 list( $limit, $offset ) = wfCheckLimits();
30
31 $lpp = new LongPagesPage();
32
33 $lpp->doQuery( $offset, $limit );
34 }
35
36 ?>