Full URLs are not necessary on longdesc; use short URLs like everywhere else.
[mediawiki.git] / includes / SpecialShortpages.php
blobc854e55104741266eb2ddb2a921e1e40db57ec35
1 <?php
2 /**
4 * @package MediaWiki
5 * @subpackage SpecialPage
6 */
8 /**
11 require_once("QueryPage.php");
13 /**
14 * SpecialShortpages extends QueryPage. It is used to return the shortest
15 * pages in the database.
16 * @package MediaWiki
17 * @subpackage SpecialPage
19 class ShortPagesPage extends QueryPage {
21 function getName() {
22 return "Shortpages";
25 function isExpensive() {
26 return true;
29 function getSQL() {
30 $dbr =& wfGetDB( DB_SLAVE );
31 $cur = $dbr->tableName( 'cur' );
32 $name = $dbr->addQuotes( $this->getName() );
34 return
35 "SELECT $name as type,
36 cur_namespace as namespace,
37 cur_title as title,
38 LENGTH(cur_text) AS value
39 FROM $cur
40 WHERE cur_namespace=0 AND cur_is_redirect=0";
43 function sortDescending() {
44 return false;
47 function formatResult( $skin, $result ) {
48 global $wgLang, $wgContLang;
49 $nb = wfMsg( "nbytes", $wgLang->formatNum( $result->value ) );
50 $link = $skin->makeKnownLink( $result->title, $wgContLang->convert( $result->title ) );
51 return "{$link} ({$nb})";
55 /**
56 * constructor
58 function wfSpecialShortpages() {
59 list( $limit, $offset ) = wfCheckLimits();
61 $spp = new ShortPagesPage();
63 return $spp->doQuery( $offset, $limit );