✏️ 正在编辑: PercentualSupervisor.php
路径:
/srv/systems_dir/yuppiecred/application/forms/PercentualSupervisor.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php class Form_PercentualSupervisor extends Core_Form { public function init() { $this->setName('f_save_percentual_supervisor'); $this->addElement('text', 'percentual_de', array( 'label' => '% De:', 'required' => true, 'onkeypress' => 'mascara(this, mvalor)', 'size' => 10 )); $this->addElement('text', 'percentual_a', array( 'label' => '% A:', 'required' => true, 'onkeypress' => 'mascara(this, mvalor)', 'size' => 10 )); $this->addElement('text', 'comissao', array( 'label' => 'Comissão:', 'required' => true, 'onkeypress' => 'mascara(this, mvalor3)', 'size' => 10 )); $this->addElement('submit', 'btn_save', array( 'label' => 'Salvar', 'class' => 'bt_save' )); $this->addDisplayGroup(array('percentual_de', 'percentual_a', 'comissao', 'btn_save'), 'subform', array('legend' => 'Faixa de Valores')); $this->_setDefaultDecorators(); } protected function _setDefaultDecorators() { $this->setDecorators( array( 'FormElements', array( 'HtmlTag', array( 'tag' => 'dl', 'class' => 'sub_form2' ) ), 'Form' )); } }
💾 保存文件
← 返回文件管理器