Horde_Config::_isDefaultRaw PHP Метод

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

Returns whether a certain value from the current configuration array exists or a default value will be used.
protected _isDefaultRaw ( string $ctx, mixed $default ) : boolean
$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.
Результат boolean Whether the default value will be used.
    protected function _isDefaultRaw($ctx, $default)
    {
        list(, $isDefault) = $this->__defaultRaw($ctx, $default);
        return $isDefault;
    }