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