PHPDocumentor [http://en.wikipedia.org/wiki/PhpDocumentor] documentation tweaking...
[lhc/web/wiklou.git] / includes / SpecialListredirects.php
index 804df55..09dc2b3 100644 (file)
@@ -1,21 +1,16 @@
 <?php
 /**
- * @package MediaWiki
- * @subpackage SpecialPage
+ * @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
  */
 
-/* */
-require_once 'QueryPage.php';
-
 /**
- * @package MediaWiki
- * @subpackage SpecialPage
+ * Special:Listredirects - Lists all the redirects on the wiki.
+ * @addtogroup SpecialPage
  */
-
 class ListredirectsPage extends QueryPage {
 
        function getName() { return( 'Listredirects' ); }
@@ -24,15 +19,18 @@ class ListredirectsPage extends QueryPage {
        function sortDescending() { return( false ); }
 
        function getSQL() {
-               $dbr =& wfGetDB( DB_SLAVE );
+               $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
@@ -52,7 +50,7 @@ class ListredirectsPage extends QueryPage {
                }
 
                # Format the whole thing and return it
-               return( $rd_link . ' &rarr; ' . $targetLink );
+               return "$rd_link $arr $targetLink";
 
        }
 
@@ -64,4 +62,4 @@ function wfSpecialListredirects() {
        $lrp->doQuery( $offset, $limit );
 }
 
-?>
\ No newline at end of file
+?>