MediaWiki REL1_31
DerivativeResourceLoaderContext.php
Go to the documentation of this file.
1<?php
31 const INHERIT_VALUE = -1;
32
36 private $context;
37
47
49 $this->context = $context;
50 }
51
52 public function getModules() {
53 if ( $this->modules === self::INHERIT_VALUE ) {
54 return $this->context->getModules();
55 }
56 return $this->modules;
57 }
58
62 public function setModules( array $modules ) {
63 $this->modules = $modules;
64 }
65
66 public function getLanguage() {
67 if ( $this->language === self::INHERIT_VALUE ) {
68 return $this->context->getLanguage();
69 }
70 return $this->language;
71 }
72
76 public function setLanguage( $language ) {
77 $this->language = $language;
78 // Invalidate direction since it is based on language
79 $this->direction = null;
80 $this->hash = null;
81 }
82
83 public function getDirection() {
84 if ( $this->direction === self::INHERIT_VALUE ) {
85 return $this->context->getDirection();
86 }
87 if ( $this->direction === null ) {
88 $this->direction = Language::factory( $this->getLanguage() )->getDir();
89 }
90 return $this->direction;
91 }
92
96 public function setDirection( $direction ) {
97 $this->direction = $direction;
98 $this->hash = null;
99 }
100
101 public function getSkin() {
102 if ( $this->skin === self::INHERIT_VALUE ) {
103 return $this->context->getSkin();
104 }
105 return $this->skin;
106 }
107
111 public function setSkin( $skin ) {
112 $this->skin = $skin;
113 $this->hash = null;
114 }
115
116 public function getUser() {
117 if ( $this->user === self::INHERIT_VALUE ) {
118 return $this->context->getUser();
119 }
120 return $this->user;
121 }
122
126 public function setUser( $user ) {
127 $this->user = $user;
128 $this->hash = null;
129 $this->userObj = null;
130 }
131
132 public function getDebug() {
133 if ( $this->debug === self::INHERIT_VALUE ) {
134 return $this->context->getDebug();
135 }
136 return $this->debug;
137 }
138
142 public function setDebug( $debug ) {
143 $this->debug = $debug;
144 $this->hash = null;
145 }
146
147 public function getOnly() {
148 if ( $this->only === self::INHERIT_VALUE ) {
149 return $this->context->getOnly();
150 }
151 return $this->only;
152 }
153
157 public function setOnly( $only ) {
158 $this->only = $only;
159 $this->hash = null;
160 }
161
162 public function getVersion() {
163 if ( $this->version === self::INHERIT_VALUE ) {
164 return $this->context->getVersion();
165 }
166 return $this->version;
167 }
168
172 public function setVersion( $version ) {
173 $this->version = $version;
174 $this->hash = null;
175 }
176
177 public function getRaw() {
178 if ( $this->raw === self::INHERIT_VALUE ) {
179 return $this->context->getRaw();
180 }
181 return $this->raw;
182 }
183
187 public function setRaw( $raw ) {
188 $this->raw = $raw;
189 }
190
191 public function getRequest() {
192 return $this->context->getRequest();
193 }
194
195 public function getResourceLoader() {
196 return $this->context->getResourceLoader();
197 }
198
199}
Allows changing specific properties of a context object, without changing the main one.
__construct(ResourceLoaderContext $context)
Object passed around to modules which contains information about the state of a specific loader reque...
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)
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.
the array() calling protocol came about after MediaWiki 1.4rc1.
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
Prior to version