Horde_Tree_Renderer_Base::getOption PHP Method

getOption() public method

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