specialpage.php

来自「php 开发的内容管理系统」· PHP 代码 · 共 576 行 · 第 1/2 页

PHP
576
字号
<?php/** * SpecialPage: handling special pages and lists thereof. * * To add a special page in an extension, add to $wgSpecialPages either  * an object instance or an array containing the name and constructor  * parameters. The latter is preferred for performance reasons.  * * The object instantiated must be either an instance of SpecialPage or a  * sub-class thereof. It must have an execute() method, which sends the HTML  * for the special page to $wgOut. The parent class has an execute() method  * which distributes the call to the historical global functions. Additionally,  * execute() also checks if the user has the necessary access privileges  * and bails out if not. * * To add a core special page, use the similar static list in  * SpecialPage::$mList. To remove a core static special page at runtime, use * a SpecialPage_initList hook. * * @package MediaWiki * @subpackage SpecialPage *//** * @access private *//** * Parent special page class, also static functions for handling the special * page list * @package MediaWiki */class SpecialPage{	/**#@+	 * @access private	 */	/**	 * The name of the class, used in the URL.	 * Also used for the default <h1> heading, @see getDescription()	 */	var $mName;	/**	 * Minimum user level required to access this page, or "" for anyone.	 * Also used to categorise the pages in Special:Specialpages	 */	var $mRestriction;	/**	 * Listed in Special:Specialpages?	 */	var $mListed;	/**	 * Function name called by the default execute()	 */	var $mFunction;	/**	 * File which needs to be included before the function above can be called	 */	var $mFile;	/**	 * Whether or not this special page is being included from an article	 */	var $mIncluding;	/**	 * Whether the special page can be included in an article	 */	var $mIncludable;	static public $mList = array(		'DoubleRedirects'	=> array( 'SpecialPage', 'DoubleRedirects' ),		'BrokenRedirects'	=> array( 'SpecialPage', 'BrokenRedirects' ),		'Disambiguations'	=> array( 'SpecialPage', 'Disambiguations' ),		'Userlogin'         => array( 'SpecialPage', 'Userlogin' ),		'Userlogout'        => array( 'UnlistedSpecialPage', 'Userlogout' ),		'Preferences'       => array( 'SpecialPage', 'Preferences' ),		'Watchlist'         => array( 'SpecialPage', 'Watchlist' ),		'Recentchanges'     => array( 'IncludableSpecialPage', 'Recentchanges' ),		'Upload'            => array( 'SpecialPage', 'Upload' ),		'Imagelist'         => array( 'SpecialPage', 'Imagelist' ),		'Newimages'         => array( 'IncludableSpecialPage', 'Newimages' ),		'Listusers'         => array( 'SpecialPage', 'Listusers' ),		'Statistics'        => array( 'SpecialPage', 'Statistics' ),		'Random'            => array( 'SpecialPage', 'Randompage' ),		'Lonelypages'       => array( 'SpecialPage', 'Lonelypages' ),		'Uncategorizedpages'=> array( 'SpecialPage', 'Uncategorizedpages' ),		'Uncategorizedcategories'=> array( 'SpecialPage', 'Uncategorizedcategories' ),		'Uncategorizedimages' => array( 'SpecialPage', 'Uncategorizedimages' ),		'Unusedcategories'	=> array( 'SpecialPage', 'Unusedcategories' ),		'Unusedimages'      => array( 'SpecialPage', 'Unusedimages' ),		'Wantedpages'	    => array( 'IncludableSpecialPage', 'Wantedpages' ),		'Wantedcategories'  => array( 'SpecialPage', 'Wantedcategories' ),		'Mostlinked'	    => array( 'SpecialPage', 'Mostlinked' ),		'Mostlinkedcategories' => array( 'SpecialPage', 'Mostlinkedcategories' ),		'Mostcategories'    => array( 'SpecialPage', 'Mostcategories' ),		'Mostimages'        => array( 'SpecialPage', 'Mostimages' ),		'Mostrevisions'     => array( 'SpecialPage', 'Mostrevisions' ),		'Shortpages'	    => array( 'SpecialPage', 'Shortpages' ),		'Longpages'		    => array( 'SpecialPage', 'Longpages' ),		'Newpages'		    => array( 'IncludableSpecialPage', 'Newpages' ),		'Ancientpages'	    => array( 'SpecialPage', 'Ancientpages' ),		'Deadendpages'      => array( 'SpecialPage', 'Deadendpages' ),		'Allpages'		    => array( 'IncludableSpecialPage', 'Allpages' ),		'Prefixindex'	    => array( 'IncludableSpecialPage', 'Prefixindex' ) ,		'Ipblocklist'	    => array( 'SpecialPage', 'Ipblocklist' ),		'Specialpages'      => array( 'UnlistedSpecialPage', 'Specialpages' ),		'Contributions'     => array( 'UnlistedSpecialPage', 'Contributions' ),		'Emailuser'		    => array( 'UnlistedSpecialPage', 'Emailuser' ),		'Whatlinkshere'     => array( 'UnlistedSpecialPage', 'Whatlinkshere' ),		'Recentchangeslinked' => array( 'UnlistedSpecialPage', 'Recentchangeslinked' ),		'Movepage'		    => array( 'UnlistedSpecialPage', 'Movepage' ),		'Blockme'           => array( 'UnlistedSpecialPage', 'Blockme' ),		'Booksources'	    => array( 'SpecialPage', 'Booksources' ),		'Categories'	    => array( 'SpecialPage', 'Categories' ),		'Export'		    => array( 'SpecialPage', 'Export' ),		'Version'		    => array( 'SpecialPage', 'Version' ),		'Allmessages'	    => array( 'SpecialPage', 'Allmessages' ),		'Log'               => array( 'SpecialPage', 'Log' ),		'Blockip'		    => array( 'SpecialPage', 'Blockip', 'block' ),		'Undelete'		    => array( 'SpecialPage', 'Undelete', 'deletedhistory' ),		"Import"		    => array( 'SpecialPage', "Import", 'import' ),		'Lockdb'		    => array( 'SpecialPage', 'Lockdb', 'siteadmin' ),		'Unlockdb'		    => array( 'SpecialPage', 'Unlockdb', 'siteadmin' ),		'Userrights'	    => array( 'SpecialPage', 'Userrights', 'userrights' ),		'MIMEsearch'        => array( 'SpecialPage', 'MIMEsearch' ),		'Unwatchedpages'    => array( 'SpecialPage', 'Unwatchedpages', 'unwatchedpages' ),		'Listredirects'     => array( 'SpecialPage', 'Listredirects' ),		'Revisiondelete'    => array( 'SpecialPage', 'Revisiondelete', 'deleterevision' ),		'Unusedtemplates'   => array( 'SpecialPage', 'Unusedtemplates' ),		'Randomredirect'    => array( 'SpecialPage', 'Randomredirect' ),	);	static public $mListInitialised = false;	/**#@-*/	/**	 * Initialise the special page list	 * This must be called before accessing SpecialPage::$mList	 */	static function initList() {		global $wgSpecialPages;		global $wgDisableCounters, $wgDisableInternalSearch, $wgEmailAuthentication;		if ( self::$mListInitialised ) {			return;		}		wfProfileIn( __METHOD__ );				if( !$wgDisableCounters ) {			self::$mList['Popularpages'] = array( 'SpecialPage', 'Popularpages' );		}		if( !$wgDisableInternalSearch ) {			self::$mList['Search'] = array( 'SpecialPage', 'Search' );		}		if( $wgEmailAuthentication ) {			self::$mList['Confirmemail'] = array( 'UnlistedSpecialPage', 'Confirmemail' );		}		# Add extension special pages		self::$mList = array_merge( self::$mList, $wgSpecialPages );		# Better to set this now, to avoid infinite recursion in carelessly written hooks		self::$mListInitialised = true;		# Run hooks		# This hook can be used to remove undesired built-in special pages		wfRunHooks( 'SpecialPage_initList', array( &self::$mList ) );		wfProfileOut( __METHOD__ );	}	/**	 * Add a page to the list of valid special pages. This used to be the preferred 	 * method for adding special pages in extensions. It's now suggested that you add 	 * an associative record to $wgSpecialPages. This avoids autoloading SpecialPage.	 *	 * @param mixed $page Must either be an array specifying a class name and 	 *                    constructor parameters, or an object. The object,	 *                    when constructed, must have an execute() method which	 *                    sends HTML to $wgOut.	 * @static	 */	static function addPage( &$page ) {		if ( !self::$mListInitialised ) {			self::initList();		}		self::$mList[$page->mName] = $page;	}	/**	 * Remove a special page from the list	 * Formerly used to disable expensive or dangerous special pages. The 	 * preferred method is now to add a SpecialPage_initList hook.	 * 	 * @static	 */	static function removePage( $name ) {		if ( !self::$mListInitialised ) {			self::initList();		}		unset( self::$mList[$name] );	}	/**	 * Find the object with a given name and return it (or NULL)	 * @static	 * @param string $name	 */	static function getPage( $name ) {		if ( !self::$mListInitialised ) {			self::initList();		}		if ( array_key_exists( $name, self::$mList ) ) {			$rec = self::$mList[$name];			if ( is_string( $rec ) ) {				$className = $rec;				self::$mList[$name] = new $className;			} elseif ( is_array( $rec ) ) {				$className = array_shift( $rec );				self::$mList[$name] = wfCreateObject( $className, $rec );			}			return self::$mList[$name];		} else {			return NULL;		}	}	/**	 * @static	 * @param string $name	 * @return mixed Title object if the redirect exists, otherwise NULL	 */	static function getRedirect( $name ) {		global $wgUser;		$redirects = array(			'Mypage' => Title::makeTitle( NS_USER, $wgUser->getName() ),			'Mytalk' => Title::makeTitle( NS_USER_TALK, $wgUser->getName() ),			'Mycontributions' => Title::makeTitle( NS_SPECIAL, 'Contributions/' . $wgUser->getName() ),			'Listadmins' => Title::makeTitle( NS_SPECIAL, 'Listusers/sysop' ), # @bug 2832			'Logs' => Title::makeTitle( NS_SPECIAL, 'Log' ),			'Randompage' => Title::makeTitle( NS_SPECIAL, 'Random' ),			'Userlist' => Title::makeTitle( NS_SPECIAL, 'Listusers' )		);		wfRunHooks( 'SpecialPageGetRedirect', array( &$redirects ) );		return isset( $redirects[$name] ) ? $redirects[$name] : null;	}	/**	 * Return part of the request string for a special redirect page	 * This allows passing, e.g. action=history to Special:Mypage, etc.	 *	 * @param $name Name of the redirect page	 * @return string	 */	function getRedirectParams( $name ) {		global $wgRequest;				$args = array();		switch( $name ) {			case 'Mypage':			case 'Mytalk':			case 'Randompage':				$args = array( 'action' );		}				$params = array();		foreach( $args as $arg ) {			if( $val = $wgRequest->getVal( $arg, false ) )				$params[] = $arg . '=' . $val;		}				return count( $params ) ? implode( '&', $params ) : false;	}		/**	 * Return categorised listable special pages	 * Returns a 2d array where the first index is the restriction name	 * @static	 */	static function getPages() {		if ( !self::$mListInitialised ) {			self::initList();

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?