Neos\FluidAdaptor\View\AbstractTemplateView::setOptions PHP 메소드

setOptions() 보호된 메소드

Merges the given options with the default values and sets the resulting options in this object.
protected setOptions ( array $options )
$options array
    protected function setOptions(array $options)
    {
        $this->options = array_merge(array_map(function ($value) {
            return $value[0];
        }, $this->supportedOptions), $options);
    }