✏️ 正在编辑: ImportarExtrato.php
路径:
/srv/systems_dir/yuppiecred/application/forms/ImportarExtrato.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php class Form_ImportarExtrato extends Core_Form { public function init() { $select = new Zend_Form_Element_Select('conta_id'); $select->setLabel('Conta:') ->addMultiOptions(Core_Combos::getContasOptions()) ->setRequired(true); $this->addElement($select); $file = new Zend_Form_Element_File('arquivo'); $file->setLabel('Arquivo (.ofx):') ->setRequired(true); $file->addValidator('Extension', false, 'ofx'); $this->addElement($file); $this->_addImportButtons(); } protected function _addImportButtons() { $this->addElement('submit', 'btn_importar', array( 'label' => 'Importar', 'class' => 'bt_save' )); } }
💾 保存文件
← 返回文件管理器