summaryrefslogtreecommitdiff
path: root/includes/SpecialListredirects.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/SpecialListredirects.php')
-rw-r--r--includes/SpecialListredirects.php69
1 files changed, 69 insertions, 0 deletions
diff --git a/includes/SpecialListredirects.php b/includes/SpecialListredirects.php
new file mode 100644
index 00000000..3cbdedab
--- /dev/null
+++ b/includes/SpecialListredirects.php
@@ -0,0 +1,69 @@
+<?php
+/**
+ * @package MediaWiki
+ * @subpackage 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
+ */
+
+/**
+ * @package MediaWiki
+ * @subpackage 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 );
+ $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 = '*';
+ }
+
+ # Check the language; RTL wikis need a &larr;
+ $arr = $wgContLang->isRTL() ? ' &larr; ' : ' &rarr; ';
+
+ # 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 );
+}
+
+?>