Newer
Older
Import / web / www.xiaofrog.com / wiki / includes / SpecialLongpages.php
@John Ryland John Ryland on 22 Dec 2020 396 bytes import NUC files
<?php
/**
 *
 * @addtogroup SpecialPage
 */

/**
 *
 * @addtogroup 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 );
}