CommonDBTM::getOptions PHP Method

getOptions() public method

Get search options
public getOptions ( ) : then
return then search option array
    function getOptions()
    {
        if (!$this->searchopt) {
            $this->searchopt = Search::getOptions($this->getType());
        }
        return $this->searchopt;
    }
CommonDBTM