✏️ 正在编辑: ImportarFatores.php
路径:
/srv/systems_dir/yuppiecred-bkp/application/forms/ImportarFatores.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php class Form_ImportarFatores extends Core_Form { public function init() { $this->setName('f_importar'); $file = new Zend_Form_Element_File('arquivo'); $file->setLabel('Arquivo:') ->setRequired(true); $this->addElement($file); $this->addElement('submit', 'btn_importar', [ 'label' => 'Importar', 'class' => 'bt_import' ]); $this->addElement('button', 'btn_back', [ 'label' => 'Voltar', 'class' => 'bt_back', 'onclick' => "window.location='" . $this->getView()->baseUrl('tabela/fatores') . "'" ]); $this->addDisplayGroup(['btn_back', 'btn_importar'], 'buttons'); $this->_setDefaultDecorators(); } protected function _setDefaultDecorators() { $this->setDecorators( array( 'FormElements', ['HtmlTag', ['tag' => 'dl', 'class' => 'form_importar']], 'Form' )); } }
💾 保存文件
← 返回文件管理器