tableName( 'page' ); $name = $dbr->addQuotes( $this->getName() ); $forceindex = $dbr->useIndexClause("page_len"); return "SELECT $name as type, page_namespace as namespace, page_title as title, page_len AS value FROM $page $forceindex WHERE page_namespace=".NS_MAIN." AND page_is_redirect=0"; } function sortDescending() { return false; } function formatResult( $skin, $result ) { global $wgLang, $wgContLang; $nb = wfMsgExt( 'nbytes', array('parsemag', 'escape'), $wgLang->formatNum( $result->value ) ); $title = Title::makeTitle( $result->namespace, $result->title ); $link = $skin->makeKnownLinkObj( $title, htmlspecialchars( $wgContLang->convert( $title->getPrefixedText() ) ) ); $histlink = $skin->makeKnownLinkObj( $title, wfMsgHtml('hist'), 'action=history' ); $dirmark = $wgContLang->getDirMark(); return "({$histlink}) {$dirmark}$link {$dirmark}({$nb})"; } } /** * constructor */ function wfSpecialShortpages() { list( $limit, $offset ) = wfCheckLimits(); $spp = new ShortPagesPage(); return $spp->doQuery( $offset, $limit ); } ?>