summaryrefslogtreecommitdiff
path: root/includes/SpecialWantedpages.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/SpecialWantedpages.php')
-rw-r--r--includes/SpecialWantedpages.php66
1 files changed, 34 insertions, 32 deletions
diff --git a/includes/SpecialWantedpages.php b/includes/SpecialWantedpages.php
index 8b700209..5fc45a88 100644
--- a/includes/SpecialWantedpages.php
+++ b/includes/SpecialWantedpages.php
@@ -63,46 +63,48 @@ class WantedPagesPage extends QueryPage {
$db->dataSeek( $res, 0 );
}
-
- function formatResult( $skin, $result ) {
- global $wgLang;
-
+ /**
+ * Format an individual result
+ *
+ * @param Skin $skin Skin to use for UI elements
+ * @param object $result Result row
+ * @return string
+ */
+ public function formatResult( $skin, $result ) {
$title = Title::makeTitleSafe( $result->namespace, $result->title );
-
- if( $this->isCached() ) {
- # Check existence; which is stored in the link cache
- if( !$title->exists() ) {
- # Make a redlink
- $pageLink = $skin->makeBrokenLinkObj( $title );
+ if( $title instanceof Title ) {
+ if( $this->isCached() ) {
+ $pageLink = $title->exists()
+ ? '<s>' . $skin->makeLinkObj( $title ) . '</s>'
+ : $skin->makeBrokenLinkObj( $title );
} else {
- # Make a a struck-out normal link
- $pageLink = "<s>" . $skin->makeLinkObj( $title ) . "</s>";
- }
+ $pageLink = $skin->makeBrokenLinkObj( $title );
+ }
+ return wfSpecialList( $pageLink, $this->makeWlhLink( $title, $skin, $result ) );
} else {
- # Not cached? Don't bother checking existence; it can't
- $pageLink = $skin->makeBrokenLinkObj( $title );
+ $tsafe = htmlspecialchars( $result->title );
+ return "Invalid title in result set; {$tsafe}";
}
-
- # Make a link to "what links here" if it's required
- $wlhLink = $this->nlinks
- ? $this->makeWlhLink( $title, $skin,
- wfMsgExt( 'nlinks', array( 'parsemag', 'escape'),
- $wgLang->formatNum( $result->value ) ) )
- : null;
-
- return wfSpecialList($pageLink, $wlhLink);
}
/**
- * Make a "what links here" link for a specified title
- * @param $title Title to make the link for
- * @param $skin Skin to use
- * @param $text Link text
+ * Make a "what links here" link for a specified result if required
+ *
+ * @param Title $title Title to make the link for
+ * @param Skin $skin Skin to use
+ * @param object $result Result row
* @return string
*/
- function makeWlhLink( &$title, &$skin, $text ) {
- $wlhTitle = SpecialPage::getTitleFor( 'Whatlinkshere' );
- return $skin->makeKnownLinkObj( $wlhTitle, $text, 'target=' . $title->getPrefixedUrl() );
+ private function makeWlhLink( $title, $skin, $result ) {
+ global $wgLang;
+ if( $this->nlinks ) {
+ $wlh = SpecialPage::getTitleFor( 'Whatlinkshere' );
+ $label = wfMsgExt( 'nlinks', array( 'parsemag', 'escape' ),
+ $wgLang->formatNum( $result->value ) );
+ return $skin->makeKnownLinkObj( $wlh, $label, 'target=' . $title->getPrefixedUrl() );
+ } else {
+ return null;
+ }
}
}
@@ -128,4 +130,4 @@ function wfSpecialWantedpages( $par = null, $specialPage ) {
$wpp->doQuery( $offset, $limit, !$inc );
}
-?>
+