Go to the documentation of this file.
51 public function get( $name ) {
52 if ( !$this->
has( $name ) ) {
53 throw new ConfigException( __METHOD__ .
": undefined option: '$name'" );
61 public function has( $name ) {
85 return array_key_exists( $var,
$GLOBALS );
string $prefix
Prefix to use for configuration variables.
getWithPrefix( $prefix, $name)
Get a variable with a given prefix, if not the defaults.
Interface for configuration instances.
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.
__construct( $prefix='wg')
has( $name)
Check whether a configuration option is set for the given name.Name of configuration option bool 1....