'doList',); function SearchFull_Show(&$Doc, &$DBObj, $options) { $this->_options = $options; $this->DB_Grid($Doc, $DBObj); $this->Doc = &$Doc; } function _doListBind(&$DB_List) { $DB_List->urlVarNames[] = 'type'; $DB_List->bind(); return true; } function doList() { require_once('class/DB/List/List.php'); $DB_List = new DB_List($this->Doc, $this->DBObj, $this->functionalFields); $DB_List->ipp = 20; $DB_List->tpl = BASE_PATH . "/tpl/Search/full_list.tpl"; $this->_doListBind($DB_List); $DB_List->exec(); $this->Doc->assign('part_name', $this->DBObj->part_name); $this->Doc->assign('section_tpl', $this->DBObj->section_tpl); return true; } } ?>