Neos\Flow\Mvc\View\AbstractView::getOption PHP Метод

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

Get a specific option of this View
public getOption ( string $optionName ) : mixed
$optionName string
Результат mixed
    public function getOption($optionName)
    {
        if (!array_key_exists($optionName, $this->supportedOptions)) {
            throw new Exception(sprintf('The view option "%s" you\'re trying to get doesn\'t exist in class "%s".', $optionName, get_class($this)), 1359625876);
        }
        return $this->options[$optionName];
    }