✏️ 正在编辑: BorderoListar.php
路径:
/srv/systems_dir/yuppiecred/application/forms/Filtro/BorderoListar.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php class Form_Filtro_BorderoListar extends Core_Form { public function init() { $this->setName('form_filtro_borderolistar'); $this->addElement(Form_DatePicker::getDatePicker('data_cadastro', 'Data de cadastro')); $this->addElement('text', 'numero', array( 'label' => 'Número', 'size' => 10, )); $this->addElement('text', 'num_cod_barras', array( 'label' => 'Nº Código de barras.', 'size' => 10, )); $this->addElement('submit', 'btn_filtrar', array( 'label' => 'Buscar', 'class' => 'bt_find', 'ignore' => true )); if( Yuppie_Auth::getIdentity()->grupo == 'Corretor' || Yuppie_Auth::getIdentity()->corretor_id > 0 ){ $this->addElement('button', 'btn_new', array( 'label' => 'Novo Borderô', 'class' => 'bt_new', 'onclick' => "window.location='" . $this->getView()->baseUrl() . "/corretor/bordero'" )); } } }
💾 保存文件
← 返回文件管理器