Exemplo n.º 1
0
 public function init()
 {
     $this->form = new Image_Form_Edit();
     $this->form->removeElement(Image::COL_ID);
     $this->form->removeElement(Image::COL_ORIGINAL_FILENAME);
     //create the upload element-----------------------------
     $element = new Zend_Form_Element_File('uploadElement');
     $path = __FILE__;
     $path = dirname($path);
     $path = dirname($path);
     $path = dirname($path);
     $path = dirname($path);
     $path = dirname($path);
     $element->setLabel('Upload image(s):')->setDestination($path . '/public/images');
     // ensure minimum 1, maximum 4 files
     $element->addValidator('Count', false, array('min' => 1, 'max' => 4));
     // limit to 100K
     //$element->addValidator('Size', false, 102400);
     // only JPEG, PNG, and GIFs
     $element->addValidator('Extension', false, 'jpg,png,gif,jpeg');
     // defines 4 identical file elements
     $element->setMultiFile(4);
     $element->setOrder(0);
     $this->form->addElement($element);
     //------------------------------------------------------
     $fishSampleCode = new Zend_Form_Element_Text(Fish::COL_SAMPLE_CODE);
     $fishSampleCode->setLabel('Fish Sample Code:');
     $fishSampleCode->setOrder(1);
     $this->form->addElement($fishSampleCode);
     //#####################new###################################
     $this->form->setDecorators(array('FormElements', array('HtmlTag', array('tag' => 'table', 'class' => 'login_form')), array('Description', array('placement' => 'prepend')), 'Form'));
     $this->form->setElementDecorators(array('ViewHelper', 'Errors', array('decorator' => array('td' => 'HtmlTag'), 'options' => array('tag' => 'td')), array('Label', array('tag' => 'td')), array('decorator' => array('tr' => 'HtmlTag'), 'options' => array('tag' => 'tr'))));
     $element->setDecorators(array('File', 'Errors', array('decorator' => array('td' => 'HtmlTag'), 'options' => array('tag' => 'td')), array('Label', array('tag' => 'td')), array('decorator' => array('tr' => 'HtmlTag'), 'options' => array('tag' => 'tr'))));
     //###########################################################
     $this->view->form = $this->form;
 }