✏️ 正在编辑: ExtratoLancarItem.php
路径:
/srv/systems_dir/yuppiecred-lidernegocios/application/forms/ExtratoLancarItem.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php class Form_ExtratoLancarItem extends Core_Form { public function init() { $select = new Zend_Form_Element_Select('empresa_id'); $select->setLabel('Empresa:') ->addMultiOptions(Core_Combos::getEmpresasOptions()); $this->addElement($select); $select = new Zend_Form_Element_Select('categoria_id'); $select->setLabel('Categoria:') ->addMultiOptions(Core_Combos::getCategoriasOptions()); $this->addElement($select); $select = new Zend_Form_Element_Select('fornecedor_id'); $select->setLabel('Fornecedor:') ->addMultiOptions(Core_Combos::getFornecedoresOptions()); $this->addElement($select); $this->addElement('submit', 'btn_save', array( 'label' => 'Salvar', 'class' => 'bt_save', )); $this->addElement('submit', 'btn_lancar', array( 'label' => 'Lançado', 'class' => 'bt_refresh', )); $this->addDisplayGroup(array( 'btn_save', 'btn_lancar'), 'buttons', array('label'=>'teste')); } }
💾 保存文件
← 返回文件管理器