* (bug 12553) Fixed invalid XHTML in edit conflict screen
[lhc/web/wiklou.git] / includes / SpecialPopularpages.php
index 5053750..af0ed26 100644 (file)
@@ -1,7 +1,13 @@
-<?
-
-include_once( "QueryPage.php" );
+<?php
+/**
+ *
+ * @addtogroup SpecialPage
+ */
 
+/**
+ * implements Special:Popularpages
+ * @addtogroup SpecialPage
+ */
 class PopularPagesPage extends QueryPage {
 
        function getName() {
@@ -9,29 +15,55 @@ class PopularPagesPage extends QueryPage {
        }
 
        function isExpensive() {
-               return 1;
+               # page_counter is not indexed
+               return true;
        }
+       function isSyndicated() { return false; }
+
+       function getSQL() {
+               $dbr = wfGetDB( DB_SLAVE );
+               $page = $dbr->tableName( 'page' );
+
+               $query = 
+                       "SELECT 'Popularpages' as type,
+                               page_namespace as namespace,
+                               page_title as title,
+                               page_counter as value
+                       FROM $page ";
+               $where =
+                       "WHERE page_is_redirect=0 AND page_namespace";
+
+               global $wgContentNamespaces;
+               if( empty( $wgContentNamespaces ) ) {
+                       $where .= '='.NS_MAIN;
+               } else if( count( $wgContentNamespaces ) > 1 ) {
+                       $where .= ' in (' . implode( ', ', $wgContentNamespaces ) . ')';
+               } else {
+                       $where .= '='.$wgContentNamespaces[0];
+               }
 
-       function getSQL( $offset, $limit ) {
-               return "SELECT DISTINCT cur_title, cur_counter FROM cur " .
-                 "WHERE cur_namespace=0 AND cur_is_redirect=0 ORDER BY " .
-                 "cur_counter DESC LIMIT {$offset}, {$limit}";
+               return $query . $where;
        }
 
        function formatResult( $skin, $result ) {
-               $link = $skin->makeKnownLink( $result->cur_title, "" );
-               $nv = wfMsg( "nviews", $result->cur_counter );
-               return "{$link} ({$nv})";
+               global $wgLang, $wgContLang;
+               $title = Title::makeTitle( $result->namespace, $result->title );
+               $link = $skin->makeKnownLinkObj( $title, htmlspecialchars( $wgContLang->convert( $title->getPrefixedText() ) ) );
+               $nv = wfMsgExt( 'nviews', array( 'parsemag', 'escape'),
+                       $wgLang->formatNum( $result->value ) );
+               return wfSpecialList($link, $nv);
        }
 }
 
-function wfSpecialPopularpages()
-{
-    list( $limit, $offset ) = wfCheckLimits();
-    
-    $ppp = new PopularPagesPage();
-    
-    return $ppp->doQuery( $offset, $limit );
+/**
+ * Constructor
+ */
+function wfSpecialPopularpages() {
+       list( $limit, $offset ) = wfCheckLimits();
+
+       $ppp = new PopularPagesPage();
+
+       return $ppp->doQuery( $offset, $limit );
 }
 
-?>
+