MediaWiki REL1_34
MediaWiki\Special\SpecialPageFactory Class Reference

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

Collaboration diagram for MediaWiki\Special\SpecialPageFactory:

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.
 

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 64 of file SpecialPageFactory.php.

Constructor & Destructor Documentation

◆ __construct()

MediaWiki\Special\SpecialPageFactory::__construct ( ServiceOptions  $options,
Language  $contLang,
ObjectFactory  $objectFactory 
)

Member Function Documentation

◆ capturePath()

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.

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

Definition at line 631 of file SpecialPageFactory.php.

References $context, $title, $wgLang, $wgOut, $wgRequest, and $wgTitle.

◆ executePath()

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.

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 547 of file SpecialPageFactory.php.

References $context, $title, and $wgSend404Code.

◆ exists()

MediaWiki\Special\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 414 of file SpecialPageFactory.php.

References $title.

◆ getAliasList()

MediaWiki\Special\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 337 of file SpecialPageFactory.php.

References wfWarn().

◆ getLocalNameFor()

MediaWiki\Special\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 696 of file SpecialPageFactory.php.

References wfWarn().

◆ getNames()

MediaWiki\Special\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 277 of file SpecialPageFactory.php.

◆ getPage()

MediaWiki\Special\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 427 of file SpecialPageFactory.php.

References wfDeprecated(), and wfLogWarning().

◆ getPageList()

MediaWiki\Special\SpecialPageFactory::getPageList ( )
private

Get the special page list as an array.

Returns
array

Definition at line 286 of file SpecialPageFactory.php.

◆ getRegularPages()

MediaWiki\Special\SpecialPageFactory::getRegularPages ( )

Return categorised listable special pages for all users.

Returns
array ( string => Specialpage )

Definition at line 497 of file SpecialPageFactory.php.

◆ getRestrictedPages()

MediaWiki\Special\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 516 of file SpecialPageFactory.php.

◆ getTitleForAlias()

MediaWiki\Special\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 749 of file SpecialPageFactory.php.

◆ getUsablePages()

MediaWiki\Special\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 475 of file SpecialPageFactory.php.

◆ resolveAlias()

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.

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

Definition at line 393 of file SpecialPageFactory.php.

Member Data Documentation

◆ $aliases

array MediaWiki\Special\SpecialPageFactory::$aliases
private

Definition at line 227 of file SpecialPageFactory.php.

◆ $constructorOptions

array MediaWiki\Special\SpecialPageFactory::$constructorOptions
static
Initial value:
= [
'ContentHandlerUseDB',
'DisableInternalSearch',
'EmailAuthentication',
'EnableEmail',
'EnableJavaScriptTest',
'EnableSpecialMute',
'PageLanguageUseDB',
'SpecialPages',
]

TODO Make this a const when HHVM support is dropped (T192166)

Since
1.33

Definition at line 244 of file SpecialPageFactory.php.

◆ $contLang

Language MediaWiki\Special\SpecialPageFactory::$contLang
private

◆ $coreList

MediaWiki\Special\SpecialPageFactory::$coreList
staticprivate

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

Todo:
Make this a const when we drop HHVM support (T192166). It can still be private in PHP 7.1.

Definition at line 70 of file SpecialPageFactory.php.

◆ $list

array MediaWiki\Special\SpecialPageFactory::$list
private

Special page name => class name.

Definition at line 224 of file SpecialPageFactory.php.

◆ $objectFactory

ObjectFactory MediaWiki\Special\SpecialPageFactory::$objectFactory
private

◆ $options

ServiceOptions MediaWiki\Special\SpecialPageFactory::$options
private

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