Merge "Save pages content in the default format of their content type"
[mediawiki.git] / includes / config / GlobalVarConfig.php
blob1144384bebb479ddc769c7c430a5561afd7405e5
1 <?php
2 /**
3 * Copyright 2014
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
20 * @file
23 /**
24 * Accesses configuration settings from $GLOBALS
26 * @since 1.23
28 class GlobalVarConfig implements Config {
30 /**
31 * Prefix to use for configuration variables
32 * @var string
34 private $prefix;
36 /**
37 * Default builder function
38 * @return GlobalVarConfig
40 public static function newInstance() {
41 return new GlobalVarConfig();
44 public function __construct( $prefix = 'wg' ) {
45 $this->prefix = $prefix;
48 /**
49 * @see Config::get
51 public function get( $name ) {
52 return $this->getWithPrefix( $this->prefix, $name );
55 /**
56 * @see MutableConfig::set
57 * @deprecated since 1.24
59 public function set( $name, $value ) {
60 wfDeprecated( __METHOD__, '1.24' );
61 $this->setWithPrefix( $this->prefix, $name, $value );
64 /**
65 * Get a variable with a given prefix, if not the defaults.
67 * @param string $prefix Prefix to use on the variable, if one.
68 * @param string $name Variable name without prefix
69 * @throws ConfigException
70 * @return mixed
72 protected function getWithPrefix( $prefix, $name ) {
73 $var = $prefix . $name;
74 if ( !array_key_exists( $var, $GLOBALS ) ) {
75 throw new ConfigException( __METHOD__ . ": undefined variable: '$var'" );
77 return $GLOBALS[$var];
80 /**
81 * Get a variable with a given prefix, if not the defaults.
83 * @param string $prefix Prefix to use on the variable
84 * @param string $name Variable name without prefix
85 * @param mixed $value Value to set
86 * @deprecated since 1.24
88 protected function setWithPrefix( $prefix, $name, $value ) {
89 $GLOBALS[$prefix . $name] = $value;