(zhtable) Add zh2Hans: '这么' => '这么' for better segmentation
[lhc/web/wiklou.git] / includes / specials / SpecialUncategorizedcategories.php
index 93a053d..d2d91bd 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 /**
+ * Implements Special:Uncategorizedcategories
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  *
  * You should have received a copy of the GNU General Public License along
  * with this program; if not, write to the Free Software Foundation, Inc.,
- * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  * http://www.gnu.org/copyleft/gpl.html
- */
-
-/**
+ *
  * @file
  * @ingroup SpecialPage
  */
 
 /**
- * implements Special:Uncategorizedcategories
+ * A special page that lists uncategorized categories
+ *
  * @ingroup SpecialPage
  */
 class UncategorizedCategoriesPage extends UncategorizedPagesPage {
-       function UncategorizedCategoriesPage() {
+       function __construct( $name = 'Uncategorizedcategories' ) {
+               parent::__construct( $name );
                $this->requestedNamespace = NS_CATEGORY;
        }
 
-       function getName() {
-               return "Uncategorizedcategories";
-       }
-}
-
-/**
- * constructor
- */
-function wfSpecialUncategorizedcategories() {
-       list( $limit, $offset ) = wfCheckLimits();
-
-       $lpp = new UncategorizedCategoriesPage();
+       /**
+        * Formats the result
+        * @param $skin The current skin
+        * @param $result The query result
+        * @return string The category link
+        */
+       function formatResult ( $skin, $result ) {
+               $title = Title::makeTitle( NS_CATEGORY, $result->title );
+               $text = $title->getText();
 
-       return $lpp->doQuery( $offset, $limit );
+               return Linker::linkKnown( $title, htmlspecialchars( $text ) );
+        }
 }