MediaWiki  REL1_31
MutableContext.php
Go to the documentation of this file.
1 <?php
25 interface MutableContext {
26 
30  public function setConfig( Config $config );
31 
35  public function setRequest( WebRequest $request );
36 
40  public function setTitle( Title $title );
41 
45  public function setWikiPage( WikiPage $wikiPage );
46 
50  public function setOutput( OutputPage $output );
51 
55  public function setUser( User $user );
56 
60  public function setLanguage( $language );
61 
65  public function setSkin( Skin $skin );
66 
67 }
$user
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 account $user
Definition: hooks.txt:247
MutableContext\setRequest
setRequest(WebRequest $request)
$output
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title after the basic globals have been set but before ordinary actions take place $output
Definition: hooks.txt:2255
MutableContext\setWikiPage
setWikiPage(WikiPage $wikiPage)
WikiPage
Class representing a MediaWiki article and history.
Definition: WikiPage.php:37
php
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
Definition: injection.txt:37
Config
Interface for configuration instances.
Definition: Config.php:28
MutableContext\setUser
setUser(User $user)
MutableContext\setSkin
setSkin(Skin $skin)
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:964
OutputPage
This class should be covered by a general architecture document which does not exist as of January 20...
Definition: OutputPage.php:45
MutableContext
Definition: MutableContext.php:25
MutableContext\setConfig
setConfig(Config $config)
MutableContext\setLanguage
setLanguage( $language)
WebRequest
The WebRequest class encapsulates getting at data passed in the URL or via a POSTed form stripping il...
Definition: WebRequest.php:38
$skin
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned $skin
Definition: hooks.txt:2011
Title
Represents a title within MediaWiki.
Definition: Title.php:39
MutableContext\setOutput
setOutput(OutputPage $output)
$request
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
Definition: hooks.txt:2806
Skin
The main skin class which provides methods and properties for all other skins.
Definition: Skin.php:36
MutableContext\setTitle
setTitle(Title $title)
User
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition: User.php:53