action = $action; } public function setGrouplist($grouplist){ $this->grouplist = $grouplist; } public function setPage($page){ $this->page = $page; } public function setType($type){ $this->type = $type; } public function init() { $this->setName($this->action); $this->setMethod('post'); if (!Pbs_Acl::checkRight('booee') && $this->action == 'editbootmenu') $meta = true; else $meta = null; $this->addElement('text', 'title', array( 'filters' => array('StringTrim'), 'validators' => array( array('StringLength', false, array(0, 50)), ), 'required' => true, 'label' => 'Title:', )); if($this->action == "createbootmenu") $label = "Create Bootmenu"; else $label = "Edit Bootmenu"; $this->addElement('submit', $this->action, array( 'required' => false, 'ignore' => true, 'label' => $label, )); $this->addElement('button', 'Cancel', array( 'onclick' => 'self.location="/user/bootmenu/index/type/'.$this->type.'/page/'.$this->page.'"' )); } }