wiki.techinc.nl/includes/SpecialLongpages.php

36 lines
451 B
PHP

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