User:Antigng/includes/Specials/SpecialPageinfo.php

维基百科,自由的百科全书
<?php
class SpecialPageinfo extends RedirectSpecialPage {
	function __construct() {
		parent::__construct( 'Pageinfo' );
		$this->mAllowedRedirectParams = array();
	}

	function getRedirect( $subpage ) {
		if ( $subpage !== '' ) {
            $this->mAddedRedirectParams['action']='info';
			$this->mAddedRedirectParams['title'] = $subpage;
		}
               else {
			$this->addHelpLink( 'Help:Pageinfo' );
			throw new ErrorPageError( 'nopagetitle', 'nopagetext' );
		}

		return true;
	}
}