identifier = 'id_cmsps_extrafields_group'; $this->lang = true; $this->table = 'cmsps_extrafields_group'; $this->className = 'CmsPsExtraFieldsGroup'; $this->bootstrap = true; $this->addRowAction('edit'); parent::__construct(); } public function renderList() { $this->fields_list = array( 'id_cmsps_extrafields_group' => array( 'title' => 'ID', 'width' => 25, 'class' => 'text-center', ), 'name' => array( 'title' => $this->l('Name'), ) ); return parent::renderList(); } public function renderForm() { $this->fields_form = array( 'multilang' => true, 'legend' => array( 'title' => $this->l('Tags CMS'), ), 'submit' => array( 'title' => $this->l('Save'), ), 'input' => array( array( 'type' => 'text', 'label' => $this->l('Name'), 'name' => 'name', 'lang' => true ), ) ); return parent::renderForm(); } }