當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Zend_Form_Element_File::setOrder方法代碼示例

本文整理匯總了PHP中Zend_Form_Element_File::setOrder方法的典型用法代碼示例。如果您正苦於以下問題:PHP Zend_Form_Element_File::setOrder方法的具體用法?PHP Zend_Form_Element_File::setOrder怎麽用?PHP Zend_Form_Element_File::setOrder使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Zend_Form_Element_File的用法示例。


在下文中一共展示了Zend_Form_Element_File::setOrder方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: init

 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;
 }
開發者ID:blackskaarj,項目名稱:webgr,代碼行數:36,代碼來源:UploadController.php


注:本文中的Zend_Form_Element_File::setOrder方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。