wiki.techinc.nl/includes/SpecialDoubleRedirects.php

113 lines
3.2 KiB
PHP
Raw Normal View History

<?php
/**
*
* @package MediaWiki
* @subpackage SpecialPage
*/
/**
2006-01-07 13:09:30 +00:00
*
*/
require_once('QueryPage.php');
/**
*
* @package MediaWiki
* @subpackage SpecialPage
*/
class DoubleRedirectsPage extends PageQueryPage {
function getName() {
return 'DoubleRedirects';
}
2006-01-07 13:31:29 +00:00
function isExpensive( ) { return true; }
function isSyndicated() { return false; }
function getPageHeader( ) {
#FIXME : probably need to add a backlink to the maintenance page.
2005-01-16 02:57:30 +00:00
return '<p>'.wfMsg("doubleredirectstext")."</p><br />\n";
}
function getSQL() {
$dbr =& wfGetDB( DB_SLAVE );
extract( $dbr->tableNames( 'page', 'pagelinks' ) );
$sql = "SELECT 'DoubleRedirects' as type," .
" pa.page_namespace as namespace, pa.page_title as title," .
" pb.page_namespace as nsb, pb.page_title as tb," .
" pc.page_namespace as nsc, pc.page_title as tc" .
" FROM $pagelinks AS la, $pagelinks AS lb, $page AS pa, $page AS pb, $page AS pc" .
" WHERE pa.page_is_redirect=1 AND pb.page_is_redirect=1" .
" AND la.pl_from=pa.page_id" .
" AND la.pl_namespace=pb.page_namespace" .
" AND la.pl_title=pb.page_title" .
" AND lb.pl_from=pb.page_id" .
" AND lb.pl_namespace=pc.page_namespace" .
" AND lb.pl_title=pc.page_title";
return $sql;
}
function getOrder() {
return '';
}
2006-01-07 13:31:29 +00:00
function formatResult( $skin, $result ) {
global $wgContLang;
$fname = 'DoubleRedirectsPage::formatResult';
$titleA = Title::makeTitle( $result->namespace, $result->title );
if ( $result && !isset( $result->nsb ) ) {
$dbr =& wfGetDB( DB_SLAVE );
extract( $dbr->tableNames( 'page', 'pagelinks' ) );
$encTitle = $dbr->addQuotes( $result->title );
$sql = "SELECT pa.page_namespace as namespace, pa.page_title as title," .
" pb.page_namespace as nsb, pb.page_title as tb," .
" pc.page_namespace as nsc, pc.page_title as tc" .
" FROM $pagelinks AS la, $pagelinks AS lb, $page AS pa, $page AS pb, $page AS pc" .
" WHERE pa.page_is_redirect=1 AND pb.page_is_redirect=1" .
" AND la.pl_from=pa.page_id" .
" AND la.pl_namespace=pb.page_namespace" .
" AND la.pl_title=pb.page_title" .
" AND lb.pl_from=pb.page_id" .
" AND lb.pl_namespace=pc.page_namespace" .
" AND lb.pl_title=pc.page_title" .
" AND pa.page_namespace={$result->namespace}" .
" AND pa.page_title=$encTitle";
$res = $dbr->query( $sql, $fname );
if ( $res ) {
$result = $dbr->fetchObject( $res );
}
}
if ( !$result ) {
return '';
}
2006-01-07 13:31:29 +00:00
$titleB = Title::makeTitle( $result->nsb, $result->tb );
$titleC = Title::makeTitle( $result->nsc, $result->tc );
$linkA = $skin->makeKnownLinkObj( $titleA,'', 'redirect=no' );
$edit = $skin->makeBrokenLinkObj( $titleA, "(".wfMsg("qbedit").")" , 'redirect=no');
$linkB = $skin->makeKnownLinkObj( $titleB, '', 'redirect=no' );
$linkC = $skin->makeKnownLinkObj( $titleC );
$arr = $wgContLang->isRTL() ? '&larr;' : '&rarr;';
2006-01-07 13:31:29 +00:00
return( "{$linkA} {$edit} {$arr} {$linkB} {$arr} {$linkC}" );
}
}
/**
* constructor
*/
function wfSpecialDoubleRedirects() {
list( $limit, $offset ) = wfCheckLimits();
2006-01-07 13:31:29 +00:00
$sdr = new DoubleRedirectsPage();
2006-01-07 13:31:29 +00:00
return $sdr->doQuery( $offset, $limit );
}
?>