OCA\Richdocuments\AppConfig::getAppValue PHP 메소드

getAppValue() 공개 메소드

Get a value by key
public getAppValue ( string $key ) : string
$key string
리턴 string
    public function getAppValue($key)
    {
        $defaultValue = null;
        if (array_key_exists($key, $this->defaults)) {
            $defaultValue = $this->defaults[$key];
        }
        return $this->config->getAppValue($this->appName, $key, $defaultValue);
    }