pick up the appropriate tags, and documentation blobs for classes. This is
the same as per r20769, but with the grouping changes (e.g. removing "@{{") omitted.
Please be advised that more related documentation tweaks may follow later - e.g.
Doxygen generates a log file of warnings that is 574 Kb in size, when run over
the just the trunk/phase3 code ... eek! Thankfully, much of that is just
whining about functions without documentation ;-)
65 lines
1.8 KiB
PHP
65 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* @addtogroup SpecialPage
|
|
*
|
|
* @author Rob Church <robchur@gmail.com>
|
|
* @copyright © 2006 Rob Church
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
|
|
*/
|
|
|
|
/**
|
|
* Special:Listredirects - Lists all the redirects on the wiki.
|
|
* @addtogroup SpecialPage
|
|
*/
|
|
class ListredirectsPage extends QueryPage {
|
|
|
|
function getName() { return( 'Listredirects' ); }
|
|
function isExpensive() { return( true ); }
|
|
function isSyndicated() { return( false ); }
|
|
function sortDescending() { return( false ); }
|
|
|
|
function getSQL() {
|
|
$dbr = wfGetDB( DB_SLAVE );
|
|
$page = $dbr->tableName( 'page' );
|
|
$sql = "SELECT 'Listredirects' AS type, page_title AS title, page_namespace AS namespace, 0 AS value FROM $page WHERE page_is_redirect = 1";
|
|
return( $sql );
|
|
}
|
|
|
|
function formatResult( $skin, $result ) {
|
|
global $wgContLang;
|
|
|
|
# Make a link to the redirect itself
|
|
$rd_title = Title::makeTitle( $result->namespace, $result->title );
|
|
$arr = $wgContLang->getArrow() . $wgContLang->getDirMark();
|
|
$rd_link = $skin->makeKnownLinkObj( $rd_title, '', 'redirect=no' );
|
|
|
|
# Find out where the redirect leads
|
|
$revision = Revision::newFromTitle( $rd_title );
|
|
if( $revision ) {
|
|
# Make a link to the destination page
|
|
$target = Title::newFromRedirect( $revision->getText() );
|
|
if( $target ) {
|
|
$targetLink = $skin->makeLinkObj( $target );
|
|
} else {
|
|
/** @todo Put in some decent error display here */
|
|
$targetLink = '*';
|
|
}
|
|
} else {
|
|
/** @todo Put in some decent error display here */
|
|
$targetLink = '*';
|
|
}
|
|
|
|
# Format the whole thing and return it
|
|
return "$rd_link $arr $targetLink";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
function wfSpecialListredirects() {
|
|
list( $limit, $offset ) = wfCheckLimits();
|
|
$lrp = new ListredirectsPage();
|
|
$lrp->doQuery( $offset, $limit );
|
|
}
|
|
|
|
?>
|