MediaWiki
1.28.0
|
Accesses configuration settings from $GLOBALS. More...
Public Member Functions | |
__construct ($prefix= 'wg') | |
get ($name) | |
has ($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 | ) |
Implements Config.
Definition at line 51 of file GlobalVarConfig.php.
References $name, 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 $name.
Referenced by get().
GlobalVarConfig::has | ( | $name | ) |
Implements Config.
Definition at line 61 of file GlobalVarConfig.php.
References $name, and 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 $name.
Referenced by has().
|
static |
Default builder function.
Definition at line 40 of file GlobalVarConfig.php.
Referenced by GlobalVarConfigTest\testNewInstance(), and ConfigFactoryTest\testRegisterInstance().
|
private |
Prefix to use for configuration variables.
Definition at line 34 of file GlobalVarConfig.php.
Referenced by __construct().