grouplist = $grouplist; } public function getGrouplist(){ return $this->grouplist; } public function init() { $this->setName("GroupRequest"); $this->setMethod('post'); $groupfield = $this->createElement('select','groupID'); $groupfield ->setLabel('Group:'); if(count($this->grouplist)>0){ foreach($this->grouplist as $group => $g){ $groupfield->addMultiOption($g->getID(), $g->getTitle()); } } $groupfield->setRegisterInArrayValidator(false); $this->addElement($groupfield); $this->addElement('submit', 'request', array( 'required' => false, 'ignore' => true, 'label' => 'Request', )); $this->addElement('button', 'cancel', array( 'required' => false, 'ignore' => true, 'label' => 'Cancel', 'onclick' => 'location.href="javascript:history.back();"', )); } }