MediaWiki  1.29.1
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 }
ResourceLoaderContext
Object passed around to modules which contains information about the state of a specific loader reque...
Definition: ResourceLoaderContext.php:32
DerivativeResourceLoaderContext\$skin
$skin
Definition: DerivativeResourceLoaderContext.php:41
DerivativeResourceLoaderContext\setVersion
setVersion( $version)
Definition: DerivativeResourceLoaderContext.php:172
version
Prior to version
Definition: maintenance.txt:1
DerivativeResourceLoaderContext\getResourceLoader
getResourceLoader()
Definition: DerivativeResourceLoaderContext.php:195
DerivativeResourceLoaderContext\$raw
$raw
Definition: DerivativeResourceLoaderContext.php:46
DerivativeResourceLoaderContext\getRequest
getRequest()
Definition: DerivativeResourceLoaderContext.php:191
DerivativeResourceLoaderContext\$modules
$modules
Definition: DerivativeResourceLoaderContext.php:38
DerivativeResourceLoaderContext\$debug
$debug
Definition: DerivativeResourceLoaderContext.php:43
DerivativeResourceLoaderContext\setLanguage
setLanguage( $language)
Definition: DerivativeResourceLoaderContext.php:76
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:35
DerivativeResourceLoaderContext\setRaw
setRaw( $raw)
Definition: DerivativeResourceLoaderContext.php:187
DerivativeResourceLoaderContext\getModules
getModules()
Definition: DerivativeResourceLoaderContext.php:52
DerivativeResourceLoaderContext\getSkin
getSkin()
Definition: DerivativeResourceLoaderContext.php:101
DerivativeResourceLoaderContext\setSkin
setSkin( $skin)
Definition: DerivativeResourceLoaderContext.php:111
user
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
Definition: distributors.txt:9
DerivativeResourceLoaderContext\setModules
setModules(array $modules)
Definition: DerivativeResourceLoaderContext.php:62
DerivativeResourceLoaderContext\setDebug
setDebug( $debug)
Definition: DerivativeResourceLoaderContext.php:142
DerivativeResourceLoaderContext\$context
ResourceLoaderContext $context
Definition: DerivativeResourceLoaderContext.php:36
DerivativeResourceLoaderContext\getOnly
getOnly()
Definition: DerivativeResourceLoaderContext.php:147
DerivativeResourceLoaderContext\getRaw
getRaw()
Definition: DerivativeResourceLoaderContext.php:177
DerivativeResourceLoaderContext\$version
$version
Definition: DerivativeResourceLoaderContext.php:45
DerivativeResourceLoaderContext\$user
$user
Definition: DerivativeResourceLoaderContext.php:42
skin
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)
language
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two distribute and or modify the software for each author s protection and we want to make certain that everyone understands that there is no warranty for this free software If the software is modified by someone else and passed we want its recipients to know that what they have is not the so that any problems introduced by others will not reflect on the original authors reputations any free program is threatened constantly by software patents We wish to avoid the danger that redistributors of a free program will individually obtain patent in effect making the program proprietary To prevent we have made it clear that any patent must be licensed for everyone s free use or not licensed at all The precise terms and conditions for distribution and modification follow GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR DISTRIBUTION AND MODIFICATION This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License The refers to any such program or and a work based on the Program means either the Program or any derivative work under copyright a work containing the Program or a portion of either verbatim or with modifications and or translated into another language(Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying
DerivativeResourceLoaderContext\setDirection
setDirection( $direction)
Definition: DerivativeResourceLoaderContext.php:96
DerivativeResourceLoaderContext
Allows changing specific properties of a context object, without changing the main one.
Definition: DerivativeResourceLoaderContext.php:30
DerivativeResourceLoaderContext\getDirection
getDirection()
Definition: DerivativeResourceLoaderContext.php:83
DerivativeResourceLoaderContext\$language
$language
Definition: DerivativeResourceLoaderContext.php:39
DerivativeResourceLoaderContext\INHERIT_VALUE
const INHERIT_VALUE
Definition: DerivativeResourceLoaderContext.php:31
DerivativeResourceLoaderContext\getLanguage
getLanguage()
Definition: DerivativeResourceLoaderContext.php:66
Language\factory
static factory( $code)
Get a cached or new language object for a given language code.
Definition: Language.php:183
DerivativeResourceLoaderContext\getVersion
getVersion()
Definition: DerivativeResourceLoaderContext.php:162
DerivativeResourceLoaderContext\setUser
setUser( $user)
Definition: DerivativeResourceLoaderContext.php:126
DerivativeResourceLoaderContext\setOnly
setOnly( $only)
Definition: DerivativeResourceLoaderContext.php:157
DerivativeResourceLoaderContext\getUser
getUser()
Definition: DerivativeResourceLoaderContext.php:116
DerivativeResourceLoaderContext\__construct
__construct(ResourceLoaderContext $context)
Definition: DerivativeResourceLoaderContext.php:48
DerivativeResourceLoaderContext\$direction
$direction
Definition: DerivativeResourceLoaderContext.php:40
DerivativeResourceLoaderContext\$only
$only
Definition: DerivativeResourceLoaderContext.php:44
array
the array() calling protocol came about after MediaWiki 1.4rc1.
DerivativeResourceLoaderContext\getDebug
getDebug()
Definition: DerivativeResourceLoaderContext.php:132