Go to the documentation of this file.
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';
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();
257 final public function msg( $key ) {
270 wfWarn( __METHOD__ .
' called without providing a Context object.' );
285 abstract public function getName();
309 if ( $right !==
null ) {
310 $errors = $this->
getTitle()->getUserPermissionsErrors( $right,
$user );
311 if (
count( $errors ) ) {
318 $block =
$user->getBlock();
361 $out->setRobotPolicy(
'noindex,nofollow' );
364 $out->setArticleRelated(
true );
373 return $this->
getTitle()->getPrefixedText();
383 return $this->
msg( strtolower( $this->
getName() ) )->escaped();
395 $msg =
wfMessage( MediaWikiServices::getInstance()->getContentLanguage()->lc(
399 if ( !$msg->isDisabled() ) {
401 $this->
getOutput()->addHelpLink( $helpUrl,
true );
403 $this->
getOutput()->addHelpLink( $to, $overrideBaseUrl );
415 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.
return true to allow those checks to and false if checking is done & $user
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.
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password 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
getName()
Return the name of the action this object responds to.
wfReadOnly()
Check whether the wiki is in read-only mode.
Show an error when a user tries to do something they do not have the necessary permissions for.
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
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.
msg( $key)
Get a Message object with context set Parameters are the same as wfMessage()
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.
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on $request
Allows to change the fields on the form that will be generated $name
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,...
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.
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 MediaWikiServices
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 use $formDescriptor instead 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 unset offset - wrap String Wrap the message in html(usually something like "<
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.