Using a better method to get the English language file.
[lhc/web/wiklou.git] / includes / SpecialCategories.php
index 4e06560..89cff20 100644 (file)
@@ -1,7 +1,15 @@
 <?php
+/**
+ *
+ * @package MediaWiki
+ * @subpackage SpecialPage
+ */
 
-require_once("QueryPage.php");
-
+/**
+ *
+ * @package MediaWiki
+ * @subpackage SpecialPage
+ */
 class CategoriesPage extends QueryPage {
 
        function getName() {
@@ -12,17 +20,26 @@ class CategoriesPage extends QueryPage {
                return false;
        }
 
+       function isSyndicated() { return false; }
+
+       function getPageHeader() {
+               return wfMsgWikiHtml( 'categoriespagetext' );
+       }
+       
        function getSQL() {
                $NScat = NS_CATEGORY;
                $dbr =& wfGetDB( DB_SLAVE );
                $categorylinks = $dbr->tableName( 'categorylinks' );
-               return "SELECT DISTINCT 'Categories' as type, 
+               $s= "SELECT 'Categories' as type,
                                {$NScat} as namespace,
                                cl_to as title,
-                               1 as value
-                          FROM $categorylinks";
+                               1 as value,
+                               COUNT(*) as count
+                          FROM $categorylinks
+                          GROUP BY 1,2,3,4";
+               return $s;
        }
-       
+
        function sortDescending() {
                return false;
        }
@@ -30,12 +47,17 @@ class CategoriesPage extends QueryPage {
        function formatResult( $skin, $result ) {
                global $wgLang;
                $title = Title::makeTitle( NS_CATEGORY, $result->title );
-               return $skin->makeLinkObj( $title, $title->getText() );
+               $plink = $skin->makeLinkObj( $title, $title->getText() );
+               $nlinks = wfMsgExt( 'nmembers', array( 'parsemag', 'escape'),
+                       $wgLang->formatNum( $result->count ) );
+               return wfSpecialList($plink, $nlinks);
        }
 }
 
-function wfSpecialCategories()
-{
+/**
+ *
+ */
+function wfSpecialCategories() {
        list( $limit, $offset ) = wfCheckLimits();
 
        $cap = new CategoriesPage();