✏️ 正在编辑: ConsultaSiape.php
路径:
/srv/systems_dir/yuppiecred-bkp/application/forms/ConsultaSiape.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php class Form_ConsultaSiape extends Core_Form { public function init() { $this->setName('f_filtro_consulta_beneficio_siape'); $this->addElement('hidden', 'consulta', array( 'value' => 'siape', 'decorators' => array('ViewHelper') )); $this->addElement('text', 'matricula', array( 'label' => 'Matrícula:', 'size' => 10, 'required' => true, )); $this->addElement('text', 'cpf', array( 'label' => 'CPF:', 'size' => 15, 'maxlength' => 14, 'onkeypress' => 'mascara(this, fcpf)', 'required' => true, )); $this->addElement('button', 'btn_filtrar', array( 'label' => 'Buscar', 'class' => 'bt_find', 'onclick' => 'findSiape()' )); $this->_setDefaultDecorators(); } protected function _setDefaultDecorators() { $this->setDecorators( array( 'FormElements', array( 'HtmlTag', array( 'tag' => 'dl', 'class' => 'consulta_beneficio' ) ), 'Form' )); } }
💾 保存文件
← 返回文件管理器