MediaWiki REL1_32
|
Factory for handling the special page list and generating SpecialPage objects. More...
Public Member Functions | |
__construct (Config $config, Language $contLang) | |
capturePath (Title $title, IContextSource $context, LinkRenderer $linkRenderer=null) | |
Just like executePath() but will override global variables and execute the page in "inclusion" mode. | |
executePath (Title &$title, IContextSource &$context, $including=false, LinkRenderer $linkRenderer=null) | |
Execute a special page path. | |
exists ( $name) | |
Check if a given name exist as a special page or as a special page alias. | |
getLocalNameFor ( $name, $subpage=false) | |
Get the local name for a specified canonical name. | |
getNames () | |
Returns a list of canonical special page names. | |
getPage ( $name) | |
Find the object with a given name and return it (or NULL) | |
getRegularPages () | |
Return categorised listable special pages for all users. | |
getRestrictedPages (User $user) | |
Return categorised listable special pages which are available for the current user, but not for everyone. | |
getTitleForAlias ( $alias) | |
Get a title for a given alias. | |
getUsablePages (User $user) | |
Return categorised listable special pages which are available for the current user, and everyone. | |
resolveAlias ( $alias) | |
Given a special page name with a possible subpage, return an array where the first element is the special page name and the second is the subpage. | |
Private Member Functions | |
getAliasList () | |
Initialise and return the list of special page aliases. | |
getPageList () | |
Get the special page list as an array. | |
Private Attributes | |
array | $aliases |
Config | $config |
Language | $contLang |
array | $list |
Special page name => class name. | |
Static Private Attributes | |
static | $coreList |
List of special page names to the subclass of SpecialPage which handles them. | |
Factory for handling the special page list and generating SpecialPage objects.
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 SpecialPageFactory::$list. To remove a core static special page at runtime, use a SpecialPage_initList hook.
Definition at line 63 of file SpecialPageFactory.php.
Definition at line 227 of file SpecialPageFactory.php.
References MediaWiki\Special\SpecialPageFactory\$config, and MediaWiki\Special\SpecialPageFactory\$contLang.
MediaWiki\Special\SpecialPageFactory::capturePath | ( | Title | $title, |
IContextSource | $context, | ||
LinkRenderer | $linkRenderer = null |
||
) |
Just like executePath() but will override global variables and execute the page in "inclusion" mode.
Returns true if the execution was successful or false if there was no such special page, or a title object if it was a redirect.
Also saves the current $wgTitle, $wgOut, $wgRequest, $wgUser and $wgLang variables so that the special page will get the context it'd expect on a normal request, and then restores them to their previous values after.
Title | $title | |
IContextSource | $context | |
LinkRenderer | null | $linkRenderer | (since 1.28) |
Definition at line 588 of file SpecialPageFactory.php.
References $context, $linkRenderer, $ret, $title, $wgLang, $wgOut, $wgRequest, and $wgTitle.
MediaWiki\Special\SpecialPageFactory::executePath | ( | Title & | $title, |
IContextSource & | $context, | ||
$including = false , |
|||
LinkRenderer | $linkRenderer = null |
||
) |
Execute a special page path.
The path may contain parameters, e.g. Special:Name/Params Extracts the special page name and call the execute method, passing the parameters
Returns a title object if the page is redirected, false if there was no such special page, and true if it was successful.
Title | &$title | |
IContextSource | &$context | |
bool | $including | Bool output is being captured for use in {{special:whatever}} |
LinkRenderer | null | $linkRenderer | (since 1.28) |
Definition at line 501 of file SpecialPageFactory.php.
References $context, $linkRenderer, $name, $query, $title, $wgSend404Code, and MediaWiki\run().
MediaWiki\Special\SpecialPageFactory::exists | ( | $name | ) |
Check if a given name exist as a special page or as a special page alias.
string | $name | Name of a special page |
Definition at line 376 of file SpecialPageFactory.php.
|
private |
Initialise and return the list of special page aliases.
Returns an array where the key is an alias, and the value is the canonical name of the special page. All registered special pages are guaranteed to map to themselves.
Definition at line 293 of file SpecialPageFactory.php.
MediaWiki\Special\SpecialPageFactory::getLocalNameFor | ( | $name, | |
$subpage = false |
|||
) |
Get the local name for a specified canonical name.
string | $name | |
string | bool | $subpage |
Definition at line 647 of file SpecialPageFactory.php.
MediaWiki\Special\SpecialPageFactory::getNames | ( | ) |
Returns a list of canonical special page names.
May be used to iterate over all registered special pages.
Definition at line 238 of file SpecialPageFactory.php.
References return.
MediaWiki\Special\SpecialPageFactory::getPage | ( | $name | ) |
Find the object with a given name and return it (or NULL)
string | $name | Special page name, may be localised and/or an alias |
Definition at line 389 of file SpecialPageFactory.php.
References $name, list, and wfLogWarning().
|
private |
Get the special page list as an array.
Definition at line 247 of file SpecialPageFactory.php.
MediaWiki\Special\SpecialPageFactory::getRegularPages | ( | ) |
Return categorised listable special pages for all users.
Definition at line 451 of file SpecialPageFactory.php.
References $name.
MediaWiki\Special\SpecialPageFactory::getRestrictedPages | ( | User | $user | ) |
MediaWiki\Special\SpecialPageFactory::getTitleForAlias | ( | $alias | ) |
Get a title for a given alias.
string | $alias |
Definition at line 700 of file SpecialPageFactory.php.
MediaWiki\Special\SpecialPageFactory::getUsablePages | ( | User | $user | ) |
MediaWiki\Special\SpecialPageFactory::resolveAlias | ( | $alias | ) |
Given a special page name with a possible subpage, return an array where the first element is the special page name and the second is the subpage.
string | $alias |
Definition at line 349 of file SpecialPageFactory.php.
References $name.
|
private |
Definition at line 215 of file SpecialPageFactory.php.
|
private |
Definition at line 218 of file SpecialPageFactory.php.
Referenced by MediaWiki\Special\SpecialPageFactory\__construct().
|
private |
Definition at line 221 of file SpecialPageFactory.php.
Referenced by MediaWiki\Special\SpecialPageFactory\__construct().
|
staticprivate |
List of special page names to the subclass of SpecialPage which handles them.
Definition at line 69 of file SpecialPageFactory.php.
|
private |
Special page name => class name.
Definition at line 212 of file SpecialPageFactory.php.