Horde_Config::_defaultRaw PHP Метод

_defaultRaw() защищенный Метод

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.
Результат 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;
    }