Horde_Config::_defaultRaw PHP Méthode

_defaultRaw() protected méthode

It does NOT return the actual value, but the PHP expression as used in the configuration file.
protected _defaultRaw ( string $ctx, mixed $default ) : mixed
$ctx string A string representing the key of the configuration array to return.
$default mixed The default value to return if the key wasn't found.
Résultat mixed Either the value of the configuration file's requested key or the default value if the key wasn't found.
    protected function _defaultRaw($ctx, $default)
    {
        list($ptr, ) = $this->__defaultRaw($ctx, $default);
        return $ptr;
    }