array( 'redirect', 'p1' => 'page', 'p2' => 'page' ), 'fields' => array( 'p1.page_namespace AS namespace', 'p1.page_title AS title', 'rd_namespace', 'rd_title' ), 'conds' => array( 'rd_namespace >= 0', 'p2.page_namespace IS NULL' ), 'join_conds' => array( 'p1' => array( 'JOIN', array( 'rd_from=p1.page_id', ) ), 'p2' => array( 'LEFT JOIN', array( 'rd_namespace=p2.page_namespace', 'rd_title=p2.page_title' ) ) ) ); } /** * @return array */ function getOrderFields() { return array ( 'rd_namespace', 'rd_title', 'rd_from' ); } /** * @param $skin Skin * @param $result * @return String */ function formatResult( $skin, $result ) { global $wgUser, $wgLang; $fromObj = Title::makeTitle( $result->namespace, $result->title ); if ( isset( $result->rd_title ) ) { $toObj = Title::makeTitle( $result->rd_namespace, $result->rd_title ); } else { $blinks = $fromObj->getBrokenLinksFrom(); # TODO: check for redirect, not for links if ( $blinks ) { $toObj = $blinks[0]; } else { $toObj = false; } } // $toObj may very easily be false if the $result list is cached if ( !is_object( $toObj ) ) { return '' . $skin->link( $fromObj ) . ''; } $from = $skin->linkKnown( $fromObj, null, array(), array( 'redirect' => 'no' ) ); $links = array(); $links[] = $skin->linkKnown( $fromObj, wfMsgHtml( 'brokenredirects-edit' ), array(), array( 'action' => 'edit' ) ); $to = $skin->link( $toObj, null, array(), array(), array( 'broken' ) ); $arr = $wgLang->getArrow(); $out = $from . wfMsg( 'word-separator' ); if( $wgUser->isAllowed( 'delete' ) ) { $links[] = $skin->linkKnown( $fromObj, wfMsgHtml( 'brokenredirects-delete' ), array(), array( 'action' => 'delete' ) ); } $out .= wfMsg( 'parentheses', $wgLang->pipeList( $links ) ); $out .= " {$arr} {$to}"; return $out; } }