summaryrefslogtreecommitdiff
path: root/includes/SpecialLongpages.php
blob: af56c17cb3c2d405566a0fd8a585d04ed98c4c2c (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
32
33
34
35
36
37
38
39
40
41
<?php
/**
 *
 * @package MediaWiki
 * @subpackage SpecialPage
 */

/**
 *
 */
require_once( 'SpecialShortpages.php' );

/**
 *
 * @package MediaWiki
 * @subpackage 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 );
}

?>