FOF30\Render\RenderBase::getOption PHP Method

getOption() public method

Get the value of a renderer option
public getOption ( string $key, mixed $default = null ) : mixed
$key string The name of the parameter
$default mixed The default value to return if the parameter is not set
return mixed The parameter value
    public function getOption($key, $default = null)
    {
        return $this->optionsRegistry->get($key, $default);
    }