Go to the documentation of this file.
69 final private static function getClass( $action, array $overrides ) {
71 $action = strtolower( $action );
79 } elseif (
$wgActions[$action] ===
true && isset( $overrides[$action] ) ) {
80 return $overrides[$action];
82 return ucfirst( $action ) .
'Action';
100 if ( is_string( $classOrCallable ) ) {
101 if ( !class_exists( $classOrCallable ) ) {
107 if ( is_callable( $classOrCallable ) ) {
111 return $classOrCallable;
127 $actionName = $request->getVal(
'action',
'view' );
131 $actionName =
'nosuchaction';
136 if ( $actionName ===
'historysubmit' ) {
137 if ( $request->getBool(
'revisiondelete' ) ) {
138 $actionName =
'revisiondelete';
139 } elseif ( $request->getBool(
'editchangetags' ) ) {
140 $actionName =
'editchangetags';
142 $actionName =
'view';
144 } elseif ( $actionName ===
'editredlink' ) {
145 $actionName =
'edit';
151 if ( !
$context->canUseWikiPage() ) {
156 if ( $action instanceof
Action ) {
157 return $action->getName();
160 return 'nosuchaction';
170 final public static function exists( $name ) {
182 } elseif ( $this->page instanceof
Article ) {
184 wfDebug( __METHOD__ .
": no context known, falling back to Article's context.\n" );
185 return $this->page->getContext();
188 wfWarn( __METHOD__ .
': no context known, falling back to RequestContext::getMain().' );
248 return $this->page->getTitle();
259 final public function msg( $key, ...$params ) {
260 return $this->
getContext()->msg( $key, ...$params );
271 wfWarn( __METHOD__ .
' called without providing a Context object.' );
286 abstract public function getName();
310 if ( $right !==
null ) {
311 $errors = $this->
getTitle()->getUserPermissionsErrors( $right, $user );
312 if ( count( $errors ) ) {
362 $out->setRobotPolicy(
'noindex,nofollow' );
365 $out->setArticleRelated(
true );
374 return $this->
getTitle()->getPrefixedText();
384 return $this->
msg( strtolower( $this->
getName() ) )->escaped();
396 $msg =
wfMessage( MediaWikiServices::getInstance()->getContentLanguage()->lc(
400 if ( !$msg->isDisabled() ) {
402 $this->
getOutput()->addHelpLink( $helpUrl,
true );
404 $this->
getOutput()->addHelpLink( $to, $overrideBaseUrl );
416 abstract public function show();
Show an error when the wiki is locked/read-only and the user tries to do something that requires writ...
static getActionName(IContextSource $context)
Get the action that will be executed, not necessarily the one passed passed through the "action" requ...
$wgActions
Array of allowed values for the "title=foo&action=<action>" parameter.
Interface for type hinting (accepts WikiPage, Article, ImagePage, CategoryPage)
__construct(Page $page, IContextSource $context=null)
Only public since 1.21.
Show an error when the user tries to do something whilst blocked.
getDescription()
Returns the description that goes below the <h1> tag.
setHeaders()
Set output headers for noindexing etc.
isBlockedFrom( $title, $fromReplica=false)
Check if user is blocked from editing a particular article.
getRequest()
Get the WebRequest being used for this instance.
doesWrites()
Indicates whether this action may perform database writes.
getName()
Return the name of the action this object responds to.
wfReadOnly()
Check whether the wiki is in read-only mode.
wfMessage( $key,... $params)
This is the function for getting translated interface messages.
Show an error when a user tries to do something they do not have the necessary permissions for.
Interface for localizing messages in MediaWiki.
Actions are things which can be done to pages (edit, delete, rollback, etc).
getContext()
Get the IContextSource in use here.
wfTransactionalTimeLimit()
Set PHP's time limit to the larger of php.ini or $wgTransactionalTimeLimit.
checkCanExecute(User $user)
Checks if the given user (identified by an object) can perform this action.
getBlock( $fromReplica=true)
Get the block affecting the user, or null if the user is not blocked.
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
getUser()
Shortcut to get the User being used for this instance.
$context
IContextSource if specified; otherwise we'll use the Context from the Page.
addHelpLink( $to, $overrideBaseUrl=false)
Adds help link with an icon via page indicators.
getTitle()
Shortcut to get the Title object from the page.
requiresUnblock()
Whether this action can still be executed by a blocked user.
show()
The main action entry point.
static getMain()
Get the RequestContext object associated with the main request.
Interface for objects which can provide a MediaWiki context on request.
static makeUrl( $name, $urlaction='')
static exists( $name)
Check if a given action is recognised, even if it's disabled.
getSkin()
Shortcut to get the Skin being used for this instance.
$page
Page on which we're performing the action.
static getClass( $action, array $overrides)
Get the Action subclass which should be used to handle this action, false if the action is disabled,...
msg( $key,... $params)
Get a Message object with context set Parameters are the same as wfMessage()
getLanguage()
Shortcut to get the user Language being used for this instance.
requiresWrite()
Whether this action requires the wiki not to be locked.
$fields
The fields used to create the HTMLForm.
getPageTitle()
Returns the name that goes in the <h1> page title.
getRestriction()
Get the permission required to perform this action.
getOutput()
Get the OutputPage being used for this instance.
useTransactionalTimeLimit()
Call wfTransactionalTimeLimit() if this request was POSTed.
wfWarn( $msg, $callerOffset=1, $level=E_USER_NOTICE)
Send a warning either to the debug log or in a PHP error depending on $wgDevelopmentWarnings.
Class for viewing MediaWiki article and history.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
static factory( $action, Page $page, IContextSource $context=null)
Get an appropriate Action subclass for the given action.