✏️ 正在编辑: CallcenterFerramentaMensagem.php
路径:
/srv/systems_dir/yuppiecred/application/forms/Filtro/CallcenterFerramentaMensagem.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php class Form_Filtro_CallcenterFerramentaMensagem extends Zend_Form { public function init() { $this->setMethod('post'); $this->setName('f_filtro_callcenter_ferramenta_mensagem'); $this->setAttrib('autocomplete', 'off'); $this->addElement('text', 'assunto', array( 'label' => 'Assunto:', )); $select = new Zend_Form_Element_Select('tipo'); $select->setLabel('Tipo:') ->addMultiOptions($this->_getTipoMensagemOptions()); $this->addElement($select); $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-ferramentas/mensagem-save'" )); } protected function _getTipoMensagemOptions() { return array( '' => '', 'E-MAIL' => 'E-MAIL', 'MSG-VOZ' => 'MENSAGEM VOZ', 'SMS-TEXTO' => 'SMS TEXTO', 'MALA-DIRETA' => 'MALA DIRETA', ); } }
💾 保存文件
← 返回文件管理器