MediaWiki REL1_31
MutableContext.php
Go to the documentation of this file.
1<?php
25interface 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}
This class should be covered by a general architecture document which does not exist as of January 20...
The main skin class which provides methods and properties for all other skins.
Definition Skin.php:36
Represents a title within MediaWiki.
Definition Title.php:39
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:53
The WebRequest class encapsulates getting at data passed in the URL or via a POSTed form stripping il...
Class representing a MediaWiki article and history.
Definition WikiPage.php:37
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
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
Interface for configuration instances.
Definition Config.php:28
setOutput(OutputPage $output)
setWikiPage(WikiPage $wikiPage)
setLanguage( $language)
setRequest(WebRequest $request)
setUser(User $user)
setConfig(Config $config)
setTitle(Title $title)
setSkin(Skin $skin)