blob: be16a02942154d40cf31d9e7cc003931d5fd2c03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<?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 );
}
|