requestedNamespace = NS_CATEGORY; } /** * Returns an array of category titles (usually without the namespace), which * shouldn't be listed on this page, even if they're uncategorized. * * @return array */ private function getExceptionList() { if ( $this->exceptionList === null ) { $exList = $this->msg( 'uncategorized-categories-exceptionlist' ) ->inContentLanguage()->plain(); $proposedTitles = explode( "\n", $exList ); foreach ( $proposedTitles as $count => $titleStr ) { if ( strpos( $titleStr, '*' ) !== 0 ) { continue; } $titleStr = preg_replace( "/^\\*\\s*/", '', $titleStr ); $title = Title::newFromText( $titleStr, NS_CATEGORY ); if ( $title && $title->getNamespace() !== NS_CATEGORY ) { $title = Title::makeTitleSafe( NS_CATEGORY, $titleStr ); } if ( $title ) { $this->exceptionList[] = $title->getDBkey(); } } } return $this->exceptionList; } public function getQueryInfo() { $dbr = wfGetDB( DB_REPLICA ); $query = parent::getQueryInfo(); $exceptionList = $this->getExceptionList(); if ( $exceptionList ) { $query['conds'][] = 'page_title not in ( ' . $dbr->makeList( $exceptionList ) . ' )'; } return $query; } /** * 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 ); } }