コード例 #1
0
ファイル: SubGroup.php プロジェクト: fredcido/simuweb
 public function init()
 {
     $this->setAttrib('class', 'horizontal-form');
     $elements = array();
     $elements[] = $this->createElement('hidden', 'id_profsubgroup')->setDecorators(array('ViewHelper'));
     $mapperGroup = new Register_Model_Mapper_ProfGroup();
     $groups = $mapperGroup->fetchAll();
     $optGroups[''] = '';
     foreach ($groups as $group) {
         $optGroups[$group['id_profgroup']] = $group['group_name'];
     }
     $elements[] = $this->createElement('select', 'fk_id_profgroup')->setDecorators($this->getDefaultElementDecorators())->setAttrib('class', 'm-wrap span12')->setLabel('Grupu')->addMultiOptions($optGroups)->setRequired(true);
     $elements[] = $this->createElement('text', 'sub_group')->setDecorators($this->getDefaultElementDecorators())->addFilter('StringTrim')->addFilter('StringToUpper')->setAttrib('maxlength', 200)->setAttrib('class', 'm-wrap span12 focused')->setLabel('Naran Sub-Grupu')->setRequired(true);
     $elements[] = $this->createElement('text', 'acronym')->setDecorators($this->getDefaultElementDecorators())->addFilter('StringTrim')->addFilter('StringToUpper')->setAttrib('maxlength', 1)->setAttrib('class', 'm-wrap span4')->setLabel('Sigla')->setRequired(true);
     $elements[] = $this->createElement('textarea', 'description')->setDecorators($this->getDefaultElementDecorators())->addFilter('StringTrim')->addFilter('StringToUpper')->setAttrib('class', 'span12')->setAttrib('cols', 100)->setAttrib('rows', 5)->setLabel('Deskrisaun');
     $this->addElements($elements);
     App_Form_Toolbar::build($this, self::ID);
     $this->setDecorators($this->getDefaultFormDecorators());
 }
コード例 #2
0
ファイル: GroupController.php プロジェクト: fredcido/simuweb
 /**
  * 
  */
 public function listAction()
 {
     $this->_helper->layout()->disableLayout();
     $this->view->rows = $this->_mapper->fetchAll();
 }