MediaWiki REL1_33
GlobalVarConfig.php
Go to the documentation of this file.
1<?php
28class GlobalVarConfig implements Config {
29
34 private $prefix;
35
40 public static function newInstance() {
41 return new GlobalVarConfig();
42 }
43
44 public function __construct( $prefix = 'wg' ) {
45 $this->prefix = $prefix;
46 }
47
51 public function get( $name ) {
52 if ( !$this->has( $name ) ) {
53 throw new ConfigException( __METHOD__ . ": undefined option: '$name'" );
54 }
55 return $this->getWithPrefix( $this->prefix, $name );
56 }
57
61 public function has( $name ) {
62 return $this->hasWithPrefix( $this->prefix, $name );
63 }
64
72 protected function getWithPrefix( $prefix, $name ) {
73 return $GLOBALS[$prefix . $name];
74 }
75
83 protected function hasWithPrefix( $prefix, $name ) {
84 $var = $prefix . $name;
85 return array_key_exists( $var, $GLOBALS );
86 }
87}
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
$GLOBALS['IP']
Exceptions for config failures.
Accesses configuration settings from $GLOBALS.
hasWithPrefix( $prefix, $name)
Check if a variable with a given prefix is set.
static newInstance()
Default builder function.
getWithPrefix( $prefix, $name)
Get a variable with a given prefix, if not the defaults.
has( $name)
@inheritDoc
__construct( $prefix='wg')
string $prefix
Prefix to use for configuration variables.
Allows to change the fields on the form that will be generated $name
Definition hooks.txt:271
Interface for configuration instances.
Definition Config.php:28