MediaWiki REL1_34
|
Factory for handling the special page list and generating SpecialPage objects. More...
Public Member Functions | |
__construct (ServiceOptions $options, Language $contLang, ObjectFactory $objectFactory) | |
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. | |
Static Public Attributes | |
static array | $constructorOptions |
TODO Make this a const when HHVM support is dropped (T192166) | |
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 |
Language | $contLang |
array | $list |
Special page name => class name. | |
ObjectFactory | $objectFactory |
ServiceOptions | $options |
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 64 of file SpecialPageFactory.php.
MediaWiki\Special\SpecialPageFactory::__construct | ( | ServiceOptions | $options, |
Language | $contLang, | ||
ObjectFactory | $objectFactory | ||
) |
ServiceOptions | $options | |
Language | $contLang | |
ObjectFactory | $objectFactory |
Definition at line 260 of file SpecialPageFactory.php.
References MediaWiki\Special\SpecialPageFactory\$contLang, MediaWiki\Special\SpecialPageFactory\$objectFactory, MediaWiki\Special\SpecialPageFactory\$options, and MediaWiki\Config\ServiceOptions\assertRequiredOptions().
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 631 of file SpecialPageFactory.php.
References $context, $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 547 of file SpecialPageFactory.php.
References $context, $title, and $wgSend404Code.
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 414 of file SpecialPageFactory.php.
References $title.
|
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 337 of file SpecialPageFactory.php.
References wfWarn().
MediaWiki\Special\SpecialPageFactory::getLocalNameFor | ( | $name, | |
$subpage = false |
|||
) |
Get the local name for a specified canonical name.
string | $name | |
string | bool | $subpage |
Definition at line 696 of file SpecialPageFactory.php.
References wfWarn().
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 277 of file SpecialPageFactory.php.
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 427 of file SpecialPageFactory.php.
References wfDeprecated(), and wfLogWarning().
|
private |
Get the special page list as an array.
Definition at line 286 of file SpecialPageFactory.php.
MediaWiki\Special\SpecialPageFactory::getRegularPages | ( | ) |
Return categorised listable special pages for all users.
Definition at line 497 of file SpecialPageFactory.php.
MediaWiki\Special\SpecialPageFactory::getRestrictedPages | ( | User | $user | ) |
Return categorised listable special pages which are available for the current user, but not for everyone.
Definition at line 516 of file SpecialPageFactory.php.
MediaWiki\Special\SpecialPageFactory::getTitleForAlias | ( | $alias | ) |
Get a title for a given alias.
string | $alias |
Definition at line 749 of file SpecialPageFactory.php.
MediaWiki\Special\SpecialPageFactory::getUsablePages | ( | User | $user | ) |
Return categorised listable special pages which are available for the current user, and everyone.
Definition at line 475 of file SpecialPageFactory.php.
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 393 of file SpecialPageFactory.php.
|
private |
Definition at line 227 of file SpecialPageFactory.php.
|
static |
TODO Make this a const when HHVM support is dropped (T192166)
Definition at line 244 of file SpecialPageFactory.php.
|
private |
Definition at line 233 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 70 of file SpecialPageFactory.php.
|
private |
Special page name => class name.
Definition at line 224 of file SpecialPageFactory.php.
|
private |
Definition at line 236 of file SpecialPageFactory.php.
Referenced by MediaWiki\Special\SpecialPageFactory\__construct().
|
private |
Definition at line 230 of file SpecialPageFactory.php.
Referenced by MediaWiki\Special\SpecialPageFactory\__construct().