This is giving me a syntax error. It looks gross this way, but I can't think of any...
[lhc/web/wiklou.git] / includes / SpecialCategories.php
index 46601ef..efe65a7 100644 (file)
@@ -1,68 +1,63 @@
 <?php
 /**
  *
- * @package MediaWiki
- * @subpackage SpecialPage
+ * @addtogroup SpecialPage
  */
 
+function wfSpecialCategories() {
+       global $wgOut;
+
+       $cap = new CategoryPager();
+       $wgOut->addHTML( 
+               wfMsgExt( 'categoriespagetext', array( 'parse' ) ) .
+               $cap->getNavigationBar()
+               . '<ul>' . $cap->getBody() . '</ul>' .
+               $cap->getNavigationBar()
+               );
+}
+
 /**
- *
- * @package MediaWiki
- * @subpackage SpecialPage
+ * @addtogroup SpecialPage
+ * @addtogroup Pager
  */
-class CategoriesPage extends QueryPage {
-
-       function getName() {
-               return "Categories";
-       }
-
-       function isExpensive() {
-               return false;
-       }
-
-       function isSyndicated() { return false; }
-
-       function getPageHeader() {
-               return wfMsgWikiHtml( 'categoriespagetext' );
+class CategoryPager extends AlphabeticPager {
+       function getQueryInfo() {
+               return array(
+                       'tables' => array('categorylinks'),
+                       'fields' => array('cl_to','count(*) AS count'),
+                       'options' => array('GROUP BY' => 'cl_to')
+                       );
        }
        
-       function getSQL() {
-               $NScat = NS_CATEGORY;
-               $dbr =& wfGetDB( DB_SLAVE );
-               $categorylinks = $dbr->tableName( 'categorylinks' );
-               $s= "SELECT 'Categories' as type,
-                               {$NScat} as namespace,
-                               cl_to as title,
-                               cl_to as value,
-                               COUNT(*) as count
-                          FROM $categorylinks
-                          GROUP BY 1,2,3,4";
-               return $s;
+       function getIndexField() {
+               return "cl_to";
        }
-
-       function sortDescending() {
-               return false;
+       
+       /* Override getBody to apply LinksBatch on resultset before actually outputting anything. */
+       function getBody() {
+               if (!$this->mQueryDone) {
+                       $this->doQuery();
+               }
+               $batch = new LinkBatch;
+       
+               $this->mResult->rewind();
+               
+               while ( $row = $this->mResult->fetchObject() ) {
+                       $batch->addObj( Title::makeTitleSafe( NS_CATEGORY, $row->cl_to ) );
+               }
+               $batch->execute();
+               $this->mResult->rewind();
+               return parent::getBody();
        }
-
-       function formatResult( $skin, $result ) {
+       
+       function formatRow($result) {
                global $wgLang;
-               $title = Title::makeTitle( NS_CATEGORY, $result->title );
-               $plink = $skin->makeLinkObj( $title, $title->getText() );
-               $nlinks = wfMsgExt( 'nmembers', array( 'parsemag', 'escape'),
-                       $wgLang->formatNum( $result->count ) );
-               return wfSpecialList($plink, $nlinks);
+               $title = Title::makeTitle( NS_CATEGORY, $result->cl_to );
+               $titleText = $this->getSkin()->makeLinkObj( $title, htmlspecialchars( $title->getText() ) );
+               $count = wfMsgExt( 'nmembers', array( 'parsemag', 'escape' ),
+                               $wgLang->formatNum( $result->count ) );
+               return Xml::tags('li', null, "$titleText ($count)" ) . "\n";
        }
 }
 
-/**
- *
- */
-function wfSpecialCategories() {
-       list( $limit, $offset ) = wfCheckLimits();
-
-       $cap = new CategoriesPage();
-
-       return $cap->doQuery( $offset, $limit );
-}
 
-?>