MediaWiki REL1_40
|
Accesses configuration settings from $GLOBALS. More...
Inherits Config.
Public Member Functions | ||||||
__construct ( $prefix='wg') | ||||||
get ( $name) | ||||||
Get a configuration variable such as "Sitename" or "UploadMaintenance.".
| ||||||
has ( $name) | ||||||
Check whether a configuration option is set for the given name.
| ||||||
Static Public Member Functions | |
static | newInstance () |
Default builder function. | |
Protected Member Functions | |
getWithPrefix ( $prefix, $name) | |
Get a variable with a given prefix, if not the defaults. | |
hasWithPrefix ( $prefix, $name) | |
Check if a variable with a given prefix is set. | |
Accesses configuration settings from $GLOBALS.
Definition at line 29 of file GlobalVarConfig.php.
GlobalVarConfig::__construct | ( | $prefix = 'wg' | ) |
string | $prefix |
Definition at line 50 of file GlobalVarConfig.php.
GlobalVarConfig::get | ( | $name | ) |
Get a configuration variable such as "Sitename" or "UploadMaintenance.".
string | $name | Name of configuration option |
ConfigException |
Implements Config.
Definition at line 57 of file GlobalVarConfig.php.
References getWithPrefix(), and has().
|
protected |
Get a variable with a given prefix, if not the defaults.
string | $prefix | Prefix to use on the variable, if one. |
string | $name | Variable name without prefix |
Definition at line 78 of file GlobalVarConfig.php.
Referenced by get().
GlobalVarConfig::has | ( | $name | ) |
Check whether a configuration option is set for the given name.
string | $name | Name of configuration option |
Implements Config.
Definition at line 67 of file GlobalVarConfig.php.
References hasWithPrefix().
Referenced by get().
|
protected |
Check if a variable with a given prefix is set.
string | $prefix | Prefix to use on the variable |
string | $name | Variable name without prefix |
Definition at line 89 of file GlobalVarConfig.php.
Referenced by has().
|
static |