PartKeepr\SystemPreferenceBundle\Service\SystemPreferenceService::getSystemPreferenceValue PHP Метод

getSystemPreferenceValue() публичный Метод

Returns a specific preference value
public getSystemPreferenceValue ( string $key ) : string
$key string The preference key to retrieve
Результат string The preference string
    public function getSystemPreferenceValue($key)
    {
        $systemPreference = $this->getPreference($key);
        return $systemPreference->getPreferenceValue();
    }