requestedNamespace = NS_CATEGORY; } /** * Formats the result * @param Skin $skin The current skin * @param object $result The query result * @return string The category link */ function formatResult( $skin, $result ) { $title = Title::makeTitle( NS_CATEGORY, $result->title ); $text = $title->getText(); return $this->getLinkRenderer()->makeKnownLink( $title, $text ); } }