Horde_Template::getOption PHP Method

getOption() public method

Returns an option's value.
public getOption ( string $option ) : mixed
$option string The option name.
return mixed The option's value.
    public function getOption($option)
    {
        return isset($this->_options[$option]) ? $this->_options[$option] : null;
    }