MediaWiki REL1_35
MediaWiki\SpecialPage\SpecialPageFactory Class Reference

Factory for handling the special page list and generating SpecialPage objects. More...

Collaboration diagram for MediaWiki\SpecialPage\SpecialPageFactory:

Public Member Functions

 __construct (ServiceOptions $options, Language $contLang, ObjectFactory $objectFactory, HookContainer $hookContainer)
 
 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
 
Language $contLang
 
HookContainer $hookContainer
 
HookRunner $hookRunner
 
array $list
 Special page name => class name.
 
ObjectFactory $objectFactory
 
ServiceOptions $options
 
const CORE_LIST
 List of special page names to the subclass of SpecialPage which handles them.
 

Detailed Description

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.

Note
There are two classes called SpecialPageFactory. You should use this first one, in namespace MediaWiki\Special, which is a service. \SpecialPageFactory is a deprecated collection of static methods that forwards to the global service.
Since
1.17

Definition at line 65 of file SpecialPageFactory.php.

Constructor & Destructor Documentation

◆ __construct()

MediaWiki\SpecialPage\SpecialPageFactory::__construct ( ServiceOptions  $options,
Language  $contLang,
ObjectFactory  $objectFactory,
HookContainer  $hookContainer 
)

Member Function Documentation

◆ capturePath()

MediaWiki\SpecialPage\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.

Parameters
Title$title
IContextSource$context
LinkRenderer | null$linkRenderer(since 1.28)
Returns
string HTML fragment

Definition at line 655 of file SpecialPageFactory.php.

References $title, $wgLang, $wgOut, $wgRequest, $wgTitle, IContextSource\getLanguage(), IContextSource\getOutput(), IContextSource\getRequest(), and IContextSource\getUser().

◆ executePath()

MediaWiki\SpecialPage\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.

Parameters
Title&$title
IContextSource&$context
bool$includingBool output is being captured for use in {{special:whatever}}
LinkRenderer | null$linkRenderer(since 1.28)
Returns
bool|Title

Definition at line 571 of file SpecialPageFactory.php.

References $title, $wgSend404Code, IContextSource\getConfig(), IContextSource\getOutput(), and IContextSource\getRequest().

◆ exists()

MediaWiki\SpecialPage\SpecialPageFactory::exists (   $name)

Check if a given name exist as a special page or as a special page alias.

Parameters
string$nameName of a special page
Returns
bool True if a special page exists with this name

Definition at line 436 of file SpecialPageFactory.php.

References $title.

◆ getAliasList()

MediaWiki\SpecialPage\SpecialPageFactory::getAliasList ( )
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.

Returns
array

Definition at line 359 of file SpecialPageFactory.php.

References wfWarn().

◆ getLocalNameFor()

MediaWiki\SpecialPage\SpecialPageFactory::getLocalNameFor (   $name,
  $subpage = false 
)

Get the local name for a specified canonical name.

Parameters
string$name
string | bool$subpage
Returns
string

Definition at line 720 of file SpecialPageFactory.php.

References wfWarn().

◆ getNames()

MediaWiki\SpecialPage\SpecialPageFactory::getNames ( )

Returns a list of canonical special page names.

May be used to iterate over all registered special pages.

Returns
string[]

Definition at line 304 of file SpecialPageFactory.php.

◆ getPage()

MediaWiki\SpecialPage\SpecialPageFactory::getPage (   $name)

Find the object with a given name and return it (or NULL)

Parameters
string$nameSpecial page name, may be localised and/or an alias
Returns
SpecialPage|null SpecialPage object or null if the page doesn't exist

Definition at line 449 of file SpecialPageFactory.php.

References wfDeprecatedMsg(), and wfLogWarning().

◆ getPageList()

MediaWiki\SpecialPage\SpecialPageFactory::getPageList ( )
private

Get the special page list as an array.

Returns
array

Definition at line 313 of file SpecialPageFactory.php.

◆ getRegularPages()

MediaWiki\SpecialPage\SpecialPageFactory::getRegularPages ( )

Return categorised listable special pages for all users.

Returns
array ( string => Specialpage )

Definition at line 521 of file SpecialPageFactory.php.

◆ getRestrictedPages()

MediaWiki\SpecialPage\SpecialPageFactory::getRestrictedPages ( User  $user)

Return categorised listable special pages which are available for the current user, but not for everyone.

Parameters
User$userUser object to use
Returns
array ( string => Specialpage )

Definition at line 540 of file SpecialPageFactory.php.

◆ getTitleForAlias()

MediaWiki\SpecialPage\SpecialPageFactory::getTitleForAlias (   $alias)

Get a title for a given alias.

Parameters
string$alias
Returns
Title|null Title or null if there is no such alias

Definition at line 773 of file SpecialPageFactory.php.

References SpecialPage\getTitleFor().

◆ getUsablePages()

MediaWiki\SpecialPage\SpecialPageFactory::getUsablePages ( User  $user)

Return categorised listable special pages which are available for the current user, and everyone.

Parameters
User$userUser object to check permissions provided
Returns
array ( string => Specialpage )

Definition at line 499 of file SpecialPageFactory.php.

◆ resolveAlias()

MediaWiki\SpecialPage\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.

Parameters
string$alias
Returns
array [ String, String|null ], or [ null, null ] if the page is invalid

Definition at line 415 of file SpecialPageFactory.php.

Member Data Documentation

◆ $aliases

array MediaWiki\SpecialPage\SpecialPageFactory::$aliases
private

Definition at line 247 of file SpecialPageFactory.php.

◆ $contLang

Language MediaWiki\SpecialPage\SpecialPageFactory::$contLang
private

◆ $hookContainer

HookContainer MediaWiki\SpecialPage\SpecialPageFactory::$hookContainer
private

◆ $hookRunner

HookRunner MediaWiki\SpecialPage\SpecialPageFactory::$hookRunner
private

Definition at line 262 of file SpecialPageFactory.php.

◆ $list

array MediaWiki\SpecialPage\SpecialPageFactory::$list
private

Special page name => class name.

Definition at line 244 of file SpecialPageFactory.php.

◆ $objectFactory

ObjectFactory MediaWiki\SpecialPage\SpecialPageFactory::$objectFactory
private

◆ $options

ServiceOptions MediaWiki\SpecialPage\SpecialPageFactory::$options
private

◆ CORE_LIST

const MediaWiki\SpecialPage\SpecialPageFactory::CORE_LIST
private

List of special page names to the subclass of SpecialPage which handles them.

Definition at line 69 of file SpecialPageFactory.php.


The documentation for this class was generated from the following file: