✏️ 正在编辑: ContratoAcaoJudicialDocumento.php
路径:
/srv/systems_dir/yuppiecred-lidernegocios/application/forms/ContratoAcaoJudicialDocumento.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php class Form_ContratoAcaoJudicialDocumento extends Zend_Form { public function init() { $this->setMethod('post'); $this->setName('sub_form_documento'); $this->setAction($this->getView()->url(array( 'action' => 'add-documento' ))); $this->setAttrib('enctype', 'multipart/form-data'); $this->addElement('hidden', 'id', array( 'class' => 'invisivel' )); $file = new Zend_Form_Element_File('arquivo'); $file->setLabel('Arquivo:') ->setRequired(true); $this->addElement($file); $this->addElement('submit', 'btn_adicionar', array( 'label' => 'Adicionar', 'class' => 'bt_new' )); $this->addDisplayGroup(array( 'contrato_id', 'arquivo', 'btn_adicionar' ), 'subform', array( 'legend' => 'Anexar Documentos' )); $front = Zend_Controller_Front::getInstance(); $this->addElement("hidden", "redirect", array( 'value' => $front->getRequest()->getActionName() )); $this->_setDefaultDecorators(); } protected function _setDefaultDecorators() { $this->setDecorators( array( 'FormElements', array( 'HtmlTag', array( 'tag' => 'dl', 'class' => 'sub_form2' ) ), 'Form' )); } }
💾 保存文件
← 返回文件管理器