✏️ 正在编辑: PagamentoIndicador.php
路径:
/srv/systems_dir/yuppiecred/application/forms/Filtro/PagamentoIndicador.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php class Form_Filtro_PagamentoIndicador extends Zend_Form { public function init() { $this->setMethod('post'); $this->setName('f_filtro_pagamento_indicador'); $this->setAttrib('autocomplete', 'off'); $select = new Zend_Form_Element_Select('indicador_id'); $select->setLabel('Indicador:') ->addMultiOptions(Core_Combos::getIndicadoresOptions()); $this->addElement($select); $this->addElement(Form_DatePicker::getDatePicker('data_pagamento_de', 'Data Protocolo:')); $this->addElement(Form_DatePicker::getDatePicker('data_pagamento_a', 'a:')); $this->addElement('submit', 'btn_filtrar', [ 'label' => 'Buscar', 'class' => 'bt_find' ]); } }
💾 保存文件
← 返回文件管理器