MediaWiki
1.34.0
|
Accesses configuration settings from $GLOBALS. More...
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. More... | |
Protected Member Functions | |
getWithPrefix ( $prefix, $name) | |
Get a variable with a given prefix, if not the defaults. More... | |
hasWithPrefix ( $prefix, $name) | |
Check if a variable with a given prefix is set. More... | |
Private Attributes | |
string | $prefix |
Prefix to use for configuration variables. More... | |
Accesses configuration settings from $GLOBALS.
Definition at line 28 of file GlobalVarConfig.php.
GlobalVarConfig::__construct | ( | $prefix = 'wg' | ) |
Definition at line 44 of file GlobalVarConfig.php.
References $prefix.
GlobalVarConfig::get | ( | $name | ) |
Get a configuration variable such as "Sitename" or "UploadMaintenance.".
string | $name | Name of configuration option |
ConfigException |
Implements Config.
Definition at line 51 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 72 of file GlobalVarConfig.php.
References $GLOBALS, and $prefix.
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 61 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 83 of file GlobalVarConfig.php.
References $GLOBALS, and $prefix.
Referenced by has().
|
static |
|
private |
Prefix to use for configuration variables.
Definition at line 34 of file GlobalVarConfig.php.
Referenced by __construct(), getWithPrefix(), and hasWithPrefix().