Merge "Implement static public Parser::getExternalLinkRel"
[lhc/web/wiklou.git] / includes / specials / SpecialUncategorizedcategories.php
index 9574af7..d2d91bd 100644 (file)
  * @ingroup SpecialPage
  */
 class UncategorizedCategoriesPage extends UncategorizedPagesPage {
-       function __construct() {
+       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 ) );
+        }
 }