CommonDBTM::getOptions PHP 메소드

getOptions() 공개 메소드

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