✏️ 正在编辑: CallcenterMsgUra.php
路径:
/srv/systems_dir/yuppiecred/application/forms/Filtro/CallcenterMsgUra.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php class Form_Filtro_CallcenterMsgUra extends Zend_Form { public function init() { $this->setMethod('post'); $this->setName('f_filtro_msg_ura'); $this->setAttrib('autocomplete', 'off'); $opcoes = ['' => ''] + Core_Combos::getOpcoesUra(); $this->addElement('select', 'opcao', [ 'label' => 'Opção Ura:', 'multiOptions' => $opcoes, ]); $this->addElement('text', 'mensagem', [ 'label' => 'Mensagem:', 'size' => 40 ]); $this->_initButtons(); } protected function _initButtons() { $this->addElement('submit', 'btn_filtrar', array( 'label' => 'Buscar', 'class' => 'bt_find' )); $this->addElement('button', 'btn_new', array( 'label' => 'Novo Cadastro', 'class' => 'bt_new', 'onclick' => "window.location='" . $this->getView()->baseUrl() . "/callcenter-msg-ura/save'" )); } }
💾 保存文件
← 返回文件管理器