MediaWiki
1.34.4
|
Actions are things which can be done to pages (edit, delete, rollback, etc). More...
Public Member Functions | |
__construct (Page $page, IContextSource $context=null) | |
Only public since 1.21. More... | |
addHelpLink ( $to, $overrideBaseUrl=false) | |
Adds help link with an icon via page indicators. More... | |
doesWrites () | |
Indicates whether this action may perform database writes. More... | |
getContext () | |
Get the IContextSource in use here. More... | |
getLanguage () | |
Shortcut to get the user Language being used for this instance. More... | |
getName () | |
Return the name of the action this object responds to. More... | |
getOutput () | |
Get the OutputPage being used for this instance. More... | |
getRequest () | |
Get the WebRequest being used for this instance. More... | |
getRestriction () | |
Get the permission required to perform this action. More... | |
getSkin () | |
Shortcut to get the Skin being used for this instance. More... | |
getTitle () | |
Shortcut to get the Title object from the page. More... | |
getUser () | |
Shortcut to get the User being used for this instance. More... | |
msg ( $key,... $params) | |
Get a Message object with context set Parameters are the same as wfMessage() More... | |
requiresUnblock () | |
Whether this action can still be executed by a blocked user. More... | |
requiresWrite () | |
Whether this action requires the wiki not to be locked. More... | |
show () | |
The main action entry point. More... | |
Static Public Member Functions | |
static | exists ( $name) |
Check if a given action is recognised, even if it's disabled. More... | |
static | factory ( $action, Page $page, IContextSource $context=null) |
Get an appropriate Action subclass for the given action. More... | |
static | getActionName (IContextSource $context) |
Get the action that will be executed, not necessarily the one passed passed through the "action" request parameter. More... | |
Protected Member Functions | |
checkCanExecute (User $user) | |
Checks if the given user (identified by an object) can perform this action. More... | |
getDescription () | |
Returns the description that goes below the \<h1\> tag. More... | |
getPageTitle () | |
Returns the name that goes in the \<h1\> page title. More... | |
setHeaders () | |
Set output headers for noindexing etc. More... | |
useTransactionalTimeLimit () | |
Call wfTransactionalTimeLimit() if this request was POSTed. More... | |
Protected Attributes | |
$context | |
IContextSource if specified; otherwise we'll use the Context from the Page. More... | |
$fields | |
The fields used to create the HTMLForm. More... | |
$page | |
Page on which we're performing the action. More... | |
Static Private Member Functions | |
static | getClass ( $action, array $overrides) |
Get the Action subclass which should be used to handle this action, false if the action is disabled, or null if it's not recognised. More... | |
Actions are things which can be done to pages (edit, delete, rollback, etc).
They are distinct from Special Pages because an action must apply to exactly one page.
To add an action in an extension, create a subclass of Action, and add the key to $wgActions.
Actions generally fall into two groups: the show-a-form-then-do-something-with-the-input format (protect, delete, move, etc), and the just-do-something format (watch, rollback, patrol, etc). The FormAction and FormlessAction classes represent these two groups.
Definition at line 39 of file Action.php.
Action::__construct | ( | Page | $page, |
IContextSource | $context = null |
||
) |
Only public since 1.21.
Page | $page | |
IContextSource | null | $context |
Definition at line 269 of file Action.php.
Action::addHelpLink | ( | $to, | |
$overrideBaseUrl = false |
|||
) |
Adds help link with an icon via page indicators.
Link target can be overridden by a local message containing a wikilink: the message key is: lowercase action name + '-helppage'.
string | $to | Target MediaWiki.org page title or encoded URL. |
bool | $overrideBaseUrl | Whether $url is a full URL, to avoid MW.o. |
Definition at line 395 of file Action.php.
References getContext(), getOutput(), Skin\makeUrl(), and wfMessage().
Referenced by InfoAction\onView(), HistoryAction\onView(), and DeleteAction\show().
|
protected |
Checks if the given user (identified by an object) can perform this action.
Can be overridden by sub-classes with more complicated permissions schemes. Failures here must throw subclasses of ErrorPageError
User | $user | The user to check, or null to use the context user |
UserBlockedError|ReadOnlyError|PermissionsError |
Reimplemented in McrUndoAction, WatchAction, and RevertAction.
Definition at line 308 of file Action.php.
References User\getBlock(), getName(), getRestriction(), getTitle(), User\isBlockedFrom(), requiresUnblock(), requiresWrite(), and wfReadOnly().
Referenced by FormlessAction\show(), PurgeAction\show(), and FormAction\show().
Action::doesWrites | ( | ) |
Indicates whether this action may perform database writes.
Reimplemented in WatchAction, RevertAction, FormAction, MarkpatrolledAction, PurgeAction, SpecialPageAction, UnwatchAction, EditAction, ProtectAction, RollbackAction, DeleteAction, and UnprotectAction.
Definition at line 433 of file Action.php.
|
staticfinal |
Check if a given action is recognised, even if it's disabled.
string | $name | Name of an action |
Definition at line 170 of file Action.php.
References getClass().
Referenced by MediaWiki\Permissions\PermissionManager\checkUserBlock(), and HistoryAction\fetchRevisions().
|
staticfinal |
Get an appropriate Action subclass for the given action.
string | $action | |
Page | $page | |
IContextSource | null | $context |
Definition at line 97 of file Action.php.
References $context, $page, and getClass().
Referenced by MediaWiki\Permissions\PermissionManager\checkUserBlock(), RebuildFileCache\execute(), getActionName(), MediaWiki\performAction(), and SkinTemplate\prepareQuickTemplate().
|
staticfinal |
Get the action that will be executed, not necessarily the one passed passed through the "action" request parameter.
Actions disabled in $wgActions will be replaced by "nosuchaction".
IContextSource | $context |
Definition at line 123 of file Action.php.
References $context, $wgActions, and factory().
Referenced by SkinTemplate\buildContentNavigationUrls(), MediaWiki\getAction(), OutputPage\getHeadLinksArray(), OutputPage\getJSVars(), OutputPage\headElement(), and SkinTemplate\wrapHTML().
|
staticfinalprivate |
Get the Action subclass which should be used to handle this action, false if the action is disabled, or null if it's not recognised.
string | $action | |
array | $overrides |
Definition at line 69 of file Action.php.
References $wgActions.
|
final |
Get the IContextSource in use here.
Definition at line 179 of file Action.php.
References $context, RequestContext\getMain(), wfDebug(), and wfWarn().
Referenced by addHelpLink(), HistoryAction\getDescription(), FormAction\getForm(), getLanguage(), getOutput(), RawAction\getRawText(), getRequest(), getSkin(), getUser(), RollbackAction\handleRollbackRequest(), HistoryAction\hasUnseenRevisionMarkers(), msg(), InfoAction\onView(), HistoryAction\onView(), InfoAction\pageInfo(), ProtectAction\show(), EditAction\show(), McrUndoAction\show(), and SpecialPageAction\show().
|
protected |
Returns the description that goes below the \<h1\> tag.
Reimplemented in InfoAction, RevertAction, SpecialPageAction, HistoryAction, RollbackAction, McrUndoAction, PurgeAction, WatchAction, CreditsAction, MarkpatrolledAction, and McrRestoreAction.
Definition at line 383 of file Action.php.
References getName(), and msg().
Referenced by setHeaders().
|
final |
Shortcut to get the user Language being used for this instance.
Definition at line 237 of file Action.php.
References getContext().
Referenced by CreditsAction\getAuthor(), CachedAction\getCacheKey(), CreditsAction\getContributors(), InfoAction\getContributors(), HistoryAction\getDescription(), RevertAction\getFormFields(), RevertAction\onSuccess(), and InfoAction\pageInfo().
|
abstract |
Return the name of the action this object responds to.
Reimplemented in HistoryAction, InfoAction, SpecialPageAction, RawAction, RevertAction, McrUndoAction, CreditsAction, MarkpatrolledAction, PurgeAction, RollbackAction, WatchAction, DeleteAction, EditAction, ProtectAction, RenderAction, SubmitAction, UnprotectAction, UnwatchAction, ViewAction, and McrRestoreAction.
Referenced by checkCanExecute(), CachedAction\getCacheKey(), getDescription(), and FormAction\getForm().
|
final |
Get the OutputPage being used for this instance.
Definition at line 208 of file Action.php.
References getContext().
Referenced by CachedAction\addCachedHTML(), addHelpLink(), RollbackAction\handleRollbackRequest(), CachedAction\onCacheInitialized(), MarkpatrolledAction\onSubmit(), UnwatchAction\onSuccess(), WatchAction\onSuccess(), PurgeAction\onSuccess(), RevertAction\onSuccess(), McrUndoAction\onSuccess(), RawAction\onView(), HistoryAction\onView(), setHeaders(), FormlessAction\show(), ProtectAction\show(), EditAction\show(), ViewAction\show(), McrUndoAction\show(), and McrUndoAction\showPreview().
|
protected |
Returns the name that goes in the \<h1\> page title.
Reimplemented in InfoAction, RevertAction, and HistoryAction.
Definition at line 373 of file Action.php.
References getTitle().
Referenced by setHeaders().
|
final |
Get the WebRequest being used for this instance.
Definition at line 198 of file Action.php.
References getContext().
Referenced by RollbackAction\alterForm(), RevertAction\alterForm(), MarkpatrolledAction\alterForm(), RevertAction\checkCanExecute(), RollbackAction\enableTransactionalTimelimit(), HistoryAction\feed(), McrUndoAction\generateDiffOrPreview(), RawAction\getContentType(), FormAction\getForm(), McrUndoAction\getFormFields(), SpecialPageAction\getName(), RawAction\getOldId(), RawAction\getRawText(), MarkpatrolledAction\getRecentChange(), RollbackAction\handleRollbackRequest(), McrRestoreAction\initFromParameters(), McrUndoAction\initFromParameters(), RevertAction\onSubmit(), McrUndoAction\onSubmit(), RawAction\onView(), HistoryAction\onView(), McrUndoAction\show(), PurgeAction\show(), RollbackAction\show(), CachedAction\startCache(), and useTransactionalTimeLimit().
Action::getRestriction | ( | ) |
Get the permission required to perform this action.
Often, but not always, the same as the action name
Reimplemented in RevertAction, MarkpatrolledAction, and RollbackAction.
Definition at line 295 of file Action.php.
Referenced by checkCanExecute().
|
final |
Shortcut to get the Skin being used for this instance.
Definition at line 228 of file Action.php.
References getContext().
|
final |
Shortcut to get the Title object from the page.
Definition at line 247 of file Action.php.
Referenced by RevertAction\alterForm(), McrUndoAction\alterForm(), RevertAction\checkCanExecute(), checkCanExecute(), HistoryAction\feed(), HistoryAction\feedEmpty(), HistoryAction\feedItem(), HistoryAction\fetchRevisions(), HistoryAction\getDescription(), RevertAction\getDescription(), FormAction\getForm(), RevertAction\getFormFields(), HistoryAction\getPageTitle(), RevertAction\getPageTitle(), getPageTitle(), InfoAction\getPageTitle(), RawAction\getRawText(), RollbackAction\handleRollbackRequest(), HistoryAction\hasUnseenRevisionMarkers(), UnwatchAction\onSubmit(), WatchAction\onSubmit(), RevertAction\onSubmit(), UnwatchAction\onSuccess(), WatchAction\onSuccess(), PurgeAction\onSuccess(), RevertAction\onSuccess(), McrUndoAction\onSuccess(), RawAction\onView(), HistoryAction\onView(), CreditsAction\othersLink(), InfoAction\pageInfo(), EditAction\show(), McrUndoAction\show(), and McrUndoAction\showPreview().
|
final |
Shortcut to get the User being used for this instance.
Definition at line 218 of file Action.php.
References getContext().
Referenced by RevertAction\getFormFields(), RollbackAction\handleRollbackRequest(), HistoryAction\hasUnseenRevisionMarkers(), UnwatchAction\onSubmit(), WatchAction\onSubmit(), MarkpatrolledAction\onSubmit(), RevertAction\onSubmit(), RevertAction\onSuccess(), RawAction\onView(), InfoAction\pageInfo(), FormlessAction\show(), EditAction\show(), PurgeAction\show(), RollbackAction\show(), and FormAction\show().
|
final |
Get a Message object with context set Parameters are the same as wfMessage()
string | string[] | MessageSpecifier | $key | |
mixed | ...$params |
Implements MessageLocalizer.
Definition at line 259 of file Action.php.
References getContext().
Referenced by RevertAction\checkCanExecute(), HistoryAction\feed(), HistoryAction\feedEmpty(), HistoryAction\feedItem(), CreditsAction\getAuthor(), CreditsAction\getContributors(), InfoAction\getContributors(), CreditsAction\getDescription(), HistoryAction\getDescription(), getDescription(), UnwatchAction\getFormFields(), WatchAction\getFormFields(), PurgeAction\getFormFields(), RevertAction\getFormFields(), RollbackAction\getFormFields(), HistoryAction\getPageTitle(), RevertAction\getPageTitle(), InfoAction\getPageTitle(), RollbackAction\handleRollbackRequest(), MarkpatrolledAction\onSubmit(), CreditsAction\onView(), InfoAction\onView(), HistoryAction\onView(), CreditsAction\othersLink(), InfoAction\pageInfo(), PurgeAction\postText(), HistoryAction\preCacheMessages(), MarkpatrolledAction\preText(), SpecialPageAction\show(), and CreditsAction\userLink().
Action::requiresUnblock | ( | ) |
Whether this action can still be executed by a blocked user.
Reimplemented in SpecialPageAction, HistoryAction, InfoAction, RawAction, PurgeAction, and WatchAction.
Definition at line 351 of file Action.php.
Referenced by checkCanExecute().
Action::requiresWrite | ( | ) |
Whether this action requires the wiki not to be locked.
Reimplemented in InfoAction, HistoryAction, and RawAction.
Definition at line 341 of file Action.php.
Referenced by checkCanExecute().
|
protected |
Set output headers for noindexing etc.
This function will not be called through the execute() entry point, so only put UI-related stuff in here.
Definition at line 360 of file Action.php.
References getDescription(), getOutput(), and getPageTitle().
Referenced by FormlessAction\show(), PurgeAction\show(), and FormAction\show().
|
abstract |
The main action entry point.
Do all output for display and send it to the context output. Do not use globals $wgOut, $wgRequest, etc, in implementations; use $this->getOutput(), etc.
ErrorPageError |
Reimplemented in FormAction, RollbackAction, SpecialPageAction, PurgeAction, McrUndoAction, DeleteAction, EditAction, ProtectAction, RenderAction, ViewAction, FormlessAction, SubmitAction, and UnprotectAction.
|
protected |
Call wfTransactionalTimeLimit() if this request was POSTed.
Definition at line 422 of file Action.php.
References getRequest(), and wfTransactionalTimeLimit().
Referenced by RevertAction\onSubmit(), EditAction\show(), DeleteAction\show(), and McrUndoAction\show().
|
protected |
IContextSource if specified; otherwise we'll use the Context from the Page.
Definition at line 53 of file Action.php.
Referenced by __construct(), factory(), getActionName(), and getContext().
|
protected |
The fields used to create the HTMLForm.
Definition at line 60 of file Action.php.
Referenced by HistoryAction\onView().
|
protected |
Page on which we're performing the action.
Definition at line 46 of file Action.php.
Referenced by __construct(), WatchAction\doUnwatch(), WatchAction\doWatch(), factory(), HistoryAction\getArticle(), CreditsAction\getAuthor(), InfoAction\getContributors(), CreditsAction\link(), InfoAction\pageCounts(), and EditAction\show().