MediaWiki REL1_30
DerivativeContext.php
Go to the documentation of this file.
1<?php
21use Liuggio\StatsdClient\Factory\StatsdDataFactory;
23
35 private $request;
36
40 private $title;
41
45 private $wikipage;
46
50 private $output;
51
55 private $user;
56
60 private $lang;
61
65 private $skin;
66
70 private $config;
71
75 private $timing;
76
80 public function __construct( IContextSource $context ) {
81 $this->setContext( $context );
82 }
83
89 public function setConfig( Config $s ) {
90 $this->config = $s;
91 }
92
98 public function getConfig() {
99 if ( !is_null( $this->config ) ) {
100 return $this->config;
101 } else {
102 return $this->getContext()->getConfig();
103 }
104 }
105
113 public function getStats() {
114 return MediaWikiServices::getInstance()->getStatsdDataFactory();
115 }
116
122 public function getTiming() {
123 if ( !is_null( $this->timing ) ) {
124 return $this->timing;
125 } else {
126 return $this->getContext()->getTiming();
127 }
128 }
129
135 public function setRequest( WebRequest $r ) {
136 $this->request = $r;
137 }
138
144 public function getRequest() {
145 if ( !is_null( $this->request ) ) {
146 return $this->request;
147 } else {
148 return $this->getContext()->getRequest();
149 }
150 }
151
157 public function setTitle( Title $t ) {
158 $this->title = $t;
159 }
160
166 public function getTitle() {
167 if ( !is_null( $this->title ) ) {
168 return $this->title;
169 } else {
170 return $this->getContext()->getTitle();
171 }
172 }
173
182 public function canUseWikiPage() {
183 if ( $this->wikipage !== null ) {
184 return true;
185 } elseif ( $this->title !== null ) {
186 return $this->title->canExist();
187 } else {
188 return $this->getContext()->canUseWikiPage();
189 }
190 }
191
198 public function setWikiPage( WikiPage $p ) {
199 $this->wikipage = $p;
200 }
201
211 public function getWikiPage() {
212 if ( !is_null( $this->wikipage ) ) {
213 return $this->wikipage;
214 } else {
215 return $this->getContext()->getWikiPage();
216 }
217 }
218
224 public function setOutput( OutputPage $o ) {
225 $this->output = $o;
226 }
227
233 public function getOutput() {
234 if ( !is_null( $this->output ) ) {
235 return $this->output;
236 } else {
237 return $this->getContext()->getOutput();
238 }
239 }
240
246 public function setUser( User $u ) {
247 $this->user = $u;
248 }
249
255 public function getUser() {
256 if ( !is_null( $this->user ) ) {
257 return $this->user;
258 } else {
259 return $this->getContext()->getUser();
260 }
261 }
262
270 public function setLanguage( $l ) {
271 if ( $l instanceof Language ) {
272 $this->lang = $l;
273 } elseif ( is_string( $l ) ) {
275 $obj = Language::factory( $l );
276 $this->lang = $obj;
277 } else {
278 throw new MWException( __METHOD__ . " was passed an invalid type of data." );
279 }
280 }
281
288 public function getLanguage() {
289 if ( !is_null( $this->lang ) ) {
290 return $this->lang;
291 } else {
292 return $this->getContext()->getLanguage();
293 }
294 }
295
301 public function setSkin( Skin $s ) {
302 $this->skin = clone $s;
303 $this->skin->setContext( $this );
304 }
305
311 public function getSkin() {
312 if ( !is_null( $this->skin ) ) {
313 return $this->skin;
314 } else {
315 return $this->getContext()->getSkin();
316 }
317 }
318
331 public function msg( $key ) {
332 $args = func_get_args();
333
334 return call_user_func_array( 'wfMessage', $args )->setContext( $this );
335 }
336}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
to move a page</td >< td > &*You are moving the page across *A non empty talk page already exists under the new or *You uncheck the box below In those you will have to move or merge the page manually if desired</td >< td > be sure to &You are responsible for making sure that links continue to point where they are supposed to go Note that the page will &a page at the new title
if( $line===false) $args
Definition cdb.php:63
The simplest way of implementing IContextSource is to hold a RequestContext as a member variable and ...
getSkin()
Get the Skin object.
getOutput()
Get the OutputPage object.
IContextSource $context
getContext()
Get the base IContextSource object.
setContext(IContextSource $context)
Set the IContextSource object.
An IContextSource implementation which will inherit context from another source but allow individual ...
getOutput()
Get the OutputPage object.
getConfig()
Get the Config object.
getTitle()
Get the Title object.
setSkin(Skin $s)
Set the Skin object.
setConfig(Config $s)
Set the SiteConfiguration object.
getWikiPage()
Get the WikiPage object.
__construct(IContextSource $context)
getLanguage()
Get the Language object.
setTitle(Title $t)
Set the Title object.
setUser(User $u)
Set the User object.
setLanguage( $l)
Set the Language object.
setWikiPage(WikiPage $p)
Set the WikiPage object.
getRequest()
Get the WebRequest object.
getUser()
Get the User object.
canUseWikiPage()
Check whether a WikiPage object can be get with getWikiPage().
setOutput(OutputPage $o)
Set the OutputPage object.
msg( $key)
Get a message using the current context.
setRequest(WebRequest $r)
Set the WebRequest object.
getSkin()
Get the Skin object.
getStats()
Get the stats object.
getTiming()
Get the timing object.
Internationalisation code.
Definition Language.php:35
MediaWiki exception.
MediaWikiServices is the service locator for the application scope of MediaWiki.
This class should be covered by a general architecture document which does not exist as of January 20...
static sanitizeLangCode( $code)
Accepts a language code and ensures it's sane.
The main skin class which provides methods and properties for all other skins.
Definition Skin.php:36
An interface to help developers measure the performance of their applications.
Definition Timing.php:45
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:51
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
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 skin(according to that user 's preference)
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling output() to send it all. It could be easily changed to send incrementally if that becomes useful
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such and we might be restricted by PHP settings such as safe mode or open_basedir We cannot assume that the software even has read access anywhere useful Many shared hosts run all users web applications under the same user
Wikitext formatted, in the key only.
returning false will NOT prevent logging a wrapping ErrorException instead of letting the login form give the generic error message that the account does not exist For when the account has been renamed or deleted or an array to pass a message key and parameters create2 Corresponds to logging log_action database field and which is displayed in the UI similar to $comment this hook should only be used to add variables that depend on the current page request
Definition hooks.txt:2194
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
Interface for objects which can provide a MediaWiki context on request.