✏️ 正在编辑: CorretorTabelaFatores.php
路径:
/srv/systems_dir/yuppiecred/application/forms/Filtro/CorretorTabelaFatores.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php class Form_Filtro_CorretorTabelaFatores extends Zend_Form { public function init() { $this->setMethod('post'); $this->setName('f_corretor_tabela_fatores'); $this->setAttrib('autocomplete', 'off'); $this->addElement('select', 'banco', array( 'required' => true, 'label' => 'Banco:', 'multiOptions' => Core_Combos::getBancosOptions() )); $this->addElement('select', 'convenio', array( 'required' => true, 'label' => 'Convênio:', 'multiOptions' => Core_Combos::getConveniosOptions() )); $this->addElement('submit', 'btn_filtrar', array( 'label' => 'Buscar', 'class' => 'bt_find' )); } }
💾 保存文件
← 返回文件管理器