PartKeepr\SystemPreferenceBundle\Service\SystemPreferenceService::getSystemPreferenceValue PHP Méthode

getSystemPreferenceValue() public méthode

Returns a specific preference value
public getSystemPreferenceValue ( string $key ) : string
$key string The preference key to retrieve
Résultat string The preference string
    public function getSystemPreferenceValue($key)
    {
        $systemPreference = $this->getPreference($key);
        return $systemPreference->getPreferenceValue();
    }