✏️ 正在编辑: ExtratoGeralCorretor.php
路径:
/srv/systems_dir/yuppiecred-bkp/application/forms/Filtro/ExtratoGeralCorretor.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php class Form_Filtro_ExtratoGeralCorretor extends Zend_Form { public function init() { $this->setMethod('post'); $this->setName('f_filtro_rel_producao_gerente'); $this->setAttrib('autocomplete', 'off'); $this->setAttrib('class', 'no-print'); $select = new Zend_Form_Element_Multiselect('corretores'); $select->setLabel('Corretores: ') ->setAttrib('class', 'multi_corretor') ->addMultiOptions(array_filter(Core_Combos::getCorretoresOptions())) ->setRegisterInArrayValidator(false); $this->addElement($select); $this->addElement(Form_DatePicker::getDatePicker('data_pagamento_de', 'Período de:')); $this->getElement('data_pagamento_de')->addDecorator('Label', array('tag' => 'dt', 'tagClass' => 'clear')); $this->addElement(Form_DatePicker::getDatePicker('data_pagamento_a', 'a:')); $this->addElement('submit', 'btn_filtrar', array( 'label' => 'Buscar', 'class' => 'bt_find' )); $this->addDisplayGroup(array('btn_filtrar'), 'buttons'); $this->_setDefaultDecorators(); } protected function _setDefaultDecorators() { $this->setDecorators( array( 'FormElements', array( 'HtmlTag', array( 'tag' => 'dl', 'class' => 'filtro_rel_producao_gerente' ) ), 'Form' )); } }
💾 保存文件
← 返回文件管理器