icefusion

Zend Form Element FIle

Nov 27th, 2012
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.52 KB | None | 0 0
  1.  $arquivojpg = new Zend_Form_Element_File('arquivojpg');
  2.         $arquivojpg->setLabel('Enviar Perspectiva JPG:');
  3.         $arquivojpg->setDestination('arq');
  4.         $arquivojpg->addValidator('Count', false, 1);        
  5.         $arquivojpg->addValidator('Size', false, 102400);
  6.         $arquivojpg->addValidator('Extension', false, 'jpg,png,gif');
  7.         $arquivojpg->addDecorators(array('ViewHelper', array(array('row' => 'HtmlTag'), array('tag' => 'div', 'class' => 'row3'))));
  8.         $form->addElement($arquivojpg);
Advertisement
Add Comment
Please, Sign In to add comment