Habari\Term::get_info PHP Метод

get_info() защищенный Метод

Gets the info object for this term, which contains data from the terminfo table related to this term.
protected get_info ( ) : TermInfo
Результат TermInfo object
    protected function get_info()
    {
        if (!$this->inforecords) {
            if (0 == $this->id) {
                $this->inforecords = new TermInfo();
            } else {
                $this->inforecords = new TermInfo($this->id);
            }
        }
        return $this->inforecords;
    }