69 $action = strtolower( $action );
71 if ( !isset( $wgActions[$action] ) ) {
75 if ( $wgActions[$action] ===
false ) {
77 } elseif ( $wgActions[$action] ===
true && isset( $overrides[$action] ) ) {
78 return $overrides[$action];
79 } elseif ( $wgActions[$action] ===
true ) {
80 return ucfirst( $action ) .
'Action';
82 return $wgActions[$action];
96 $classOrCallable = self::getClass( $action, $page->getActionOverrides() );
98 if ( is_string( $classOrCallable ) ) {
99 if ( !class_exists( $classOrCallable ) ) {
102 $obj =
new $classOrCallable( $page,
$context );
106 if ( is_callable( $classOrCallable ) ) {
107 return call_user_func_array( $classOrCallable, [ $page,
$context ] );
110 return $classOrCallable;
126 $actionName =
$request->getVal(
'action',
'view' );
129 if ( isset( $wgActions[$actionName] ) && $wgActions[$actionName] ===
false ) {
130 $actionName =
'nosuchaction';
135 if ( $actionName ===
'historysubmit' ) {
136 if (
$request->getBool(
'revisiondelete' ) ) {
137 $actionName =
'revisiondelete';
138 } elseif (
$request->getBool(
'editchangetags' ) ) {
139 $actionName =
'editchangetags';
141 $actionName =
'view';
143 } elseif ( $actionName ==
'editredlink' ) {
144 $actionName =
'edit';
155 if ( $action instanceof
Action ) {
156 return $action->getName();
159 return 'nosuchaction';
170 return self::getClass(
$name, [] ) !== null;
183 wfDebug( __METHOD__ .
": no context known, falling back to Article's context.\n" );
184 return $this->
page->getContext();
187 wfWarn( __METHOD__ .
': no context known, falling back to RequestContext::getMain().' );
247 return $this->
page->getTitle();
256 final public function msg() {
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 ) ) {
357 $out->setRobotPolicy(
"noindex,nofollow" );
360 $out->setArticleRelated(
true );
369 return $this->
getTitle()->getPrefixedText();
379 return $this->
msg( strtolower( $this->
getName() ) )->escaped();
396 if ( !$msg->isDisabled() ) {
398 $this->
getOutput()->addHelpLink( $helpUrl,
true );
400 $this->
getOutput()->addHelpLink( $to, $overrideBaseUrl );
412 abstract public function show();
addHelpLink($to, $overrideBaseUrl=false)
Adds help link with an icon via page indicators.
Interface for objects which can provide a MediaWiki context on request.
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
getOutput()
Get the OutputPage being used for this instance.
the array() calling protocol came about after MediaWiki 1.4rc1.
static makeUrl($name, $urlaction= '')
getTitle()
Shortcut to get the Title object from the page.
Show an error when the wiki is locked/read-only and the user tries to do something that requires writ...
canUseWikiPage()
Check whether a WikiPage object can be get with getWikiPage().
getUser()
Shortcut to get the User being used for this instance.
Class for viewing MediaWiki article and history.
show()
The main action entry point.
static exists($name)
Check if a given action is recognised, even if it's disabled.
getLanguage()
Shortcut to get the user Language being used for this instance.
requiresUnblock()
Whether this action can still be executed by a blocked user.
when a variable name is used in a it is silently declared as a new local masking the global
getSkin()
Shortcut to get the Skin being used for this instance.
wfDebug($text, $dest= 'all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
doesWrites()
Indicates whether this action may perform database writes.
static factory($action, Page $page, IContextSource $context=null)
Get an appropriate Action subclass for the given action.
Actions are things which can be done to pages (edit, delete, rollback, etc).
useTransactionalTimeLimit()
Call wfTransactionalTimeLimit() if this request was POSTed.
getBlock($bFromSlave=true)
Get the block affecting the user, or null if the user is not blocked.
$context
IContextSource if specified; otherwise we'll use the Context from the Page.
Interface for type hinting (accepts WikiPage, Article, ImagePage, CategoryPage)
wfReadOnly()
Check whether the wiki is in read-only mode.
static getMain()
Static methods.
getRestriction()
Get the permission required to perform this action.
getName()
Return the name of the action this object responds to.
wfWarn($msg, $callerOffset=1, $level=E_USER_NOTICE)
Send a warning either to the debug log or in a PHP error depending on $wgDevelopmentWarnings.
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock()-offset Set to overwrite offset parameter in $wgRequest set to ''to unsetoffset-wrap String Wrap the message in html(usually something like"<
setHeaders()
Set output headers for noindexing etc.
getContext()
Get the IContextSource in use here.
static getActionName(IContextSource $context)
Get the action that will be executed, not necessarily the one passed passed through the "action" requ...
Show an error when the user tries to do something whilst blocked.
checkCanExecute(User $user)
Checks if the given user (identified by an object) can perform this action.
$page
Page on which we're performing the action.
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
$fields
The fields used to create the HTMLForm.
isBlocked($bFromSlave=true)
Check if user is blocked.
getDescription()
Returns the description that goes below the \
tag.
static getClass($action, array $overrides)
Get the Action subclass which should be used to handle this action, false if the action is disabled...
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
getPageTitle()
Returns the name that goes in the \
page title.
error also a ContextSource you ll probably need to make sure the header is varied on $request
Show an error when a user tries to do something they do not have the necessary permissions for...
wfTransactionalTimeLimit()
Set PHP's time limit to the larger of php.ini or $wgTransactionalTimeLimit.
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the local content language as $wgContLang
getWikiPage()
Get the WikiPage object.
msg()
Get a Message object with context set Parameters are the same as wfMessage()
__construct(Page $page, IContextSource $context=null)
Constructor.
getRequest()
Get the WebRequest being used for this instance.
getRequest()
Get the WebRequest object.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached one of or reset my talk page
requiresWrite()
Whether this action requires the wiki not to be locked.
Allows to change the fields on the form that will be generated $name