Go to the source code of this file.
Classes | |
class | SpecialPage |
Parent special page class, also static functions for handling the special page list. More... | |
class | UnlistedSpecialPage |
Shortcut to construct a special page which is unlisted by default. More... | |
class | IncludableSpecialPage |
Shortcut to construct an includable special page. More... | |
class | SpecialRedirectToSpecial |
Shortcut to construct a special page alias. More... | |
class | SpecialMypage |
SpecialMypage, SpecialMytalk and SpecialMycontributions special pages are used to get user independant links pointing to the user page, talk page and list of contributions. More... | |
class | SpecialMytalk |
Shortcut to construct a special page pointing to current user talk page. More... | |
class | SpecialMycontributions |
Shortcut to construct a special page pointing to current user contributions. More... |
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.
Definition in file SpecialPage.php.