MediaWiki REL1_33
ConfigRepository.php
Go to the documentation of this file.
1<?php
24
27
36
38 private $configItems = [
39 'private' => [],
40 'public' => [],
41 ];
42
47 $this->configFactory = $configFactory;
48 }
49
57 public function has( $name, $alsoPrivate = false ) {
58 return isset( $this->configItems['public'][$name] ) ||
59 ( $alsoPrivate && isset( $this->configItems['private'][$name] ) );
60 }
61
70 public function get( $name ) {
71 if ( !$this->has( $name, true ) ) {
72 throw new \ConfigException( 'The configuration option ' . $name . ' does not exist.' );
73 }
74
75 return $this->configItems['public'][$name] ?? $this->configItems['private'][$name];
76 }
77
88 public function getAll() {
89 return array_merge( $this->configItems['private'], $this->configItems['public'] );
90 }
91
97 public function getPublic() {
98 return $this->configItems['public'];
99 }
100
109 public function getValueOf( $name ) {
110 $config = $this->get( $name );
111 if ( !isset( $config['configregistry'] ) ) {
112 return $config['value'];
113 }
114
115 return $this->configFactory->makeConfig( $config['configregistry'] )->get( $name );
116 }
117
126 public function getDescriptionOf( $name ) {
127 $config = $this->get( $name );
128 if ( isset( $config['descriptionmsg'] ) ) {
129 return wfMessage( $config['descriptionmsg'] )->escaped();
130 }
131 if ( isset( $config['description'] ) ) {
132 return htmlspecialchars( $config['description'] );
133 }
134 return '';
135 }
136
152 public function add( $name, array $config ) {
153 if ( $this->has( $name ) ) {
154 throw new \ConfigException( 'A configuration with the name ' . $name .
155 'does already exist. It is provided by: ' .
156 $this->get( $name )['providedby'] );
157 }
158 if ( isset( $config['public'] ) && $config['public'] ) {
159 $this->configItems['public'][$name] = $config;
160 } else {
161 $this->configItems['private'][$name] = $config;
162 }
163 }
164
172 public function isEmpty( $includePrivate = false ) {
173 if ( $includePrivate ) {
174 return empty( $this->configItems['private'] ) &&
175 empty( $this->configItems[ 'public'] );
176 }
177 return empty( $this->configItems['public'] );
178 }
179
189 public function salvage( SalvageableService $other ) {
190 Assert::parameterType( self::class, $other, '$other' );
191
192 foreach ( $other->configItems['public'] as $name => $otherConfig ) {
193 if ( isset( $this->configItems['public'][$name] ) ) {
194 continue;
195 }
196
197 $this->add( $name, $otherConfig );
198 }
199 foreach ( $other->configItems['private'] as $name => $otherConfig ) {
200 if ( isset( $this->configItems['private'][$name] ) ) {
201 continue;
202 }
203
204 $this->add( $name, $otherConfig );
205 }
206
207 // disable $other
208 $other->configItems = [];
209 }
210}
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 and(2) offer you this license which gives you legal permission to copy
Factory class to create Config objects.
Object which holds currently registered configuration options.
add( $name, array $config)
Adds the definition of a configuration to this repository.
__construct(\ConfigFactory $configFactory)
getPublic()
Returns an array of all public configuration options saved in this ConfigRepository.
isEmpty( $includePrivate=false)
Returns true, if there're no elements in this instance, otherwise false.
getValueOf( $name)
Returns the current value of the configuration option.
has( $name, $alsoPrivate=false)
Returns true, if this repository contains a configuration with a specific name.
salvage(SalvageableService $other)
Re-uses existing Cache objects from $other.
getDescriptionOf( $name)
Returns the description of the given config option, This can be either a localized description,...
getAll()
Returns an array of all configuration items saved in this ConfigRepository.
An extension or a local will often add custom code to the function with or without a global variable For someone wanting email notification when an article is shown may add
Definition hooks.txt:56
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "&lt;div ...>$1&lt;/div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
Allows to change the fields on the form that will be generated $name
Definition hooks.txt:271
SalvageableService defines an interface for services that are able to salvage state from a previous i...
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))