✏️ 正在编辑: mensagem.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/callcenter-ferramentas/mensagem.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local">Lista de Mensagens</h1> <div id="filter"> <?php echo $this->form; ?> <div class="clear"></div> </div> <div id="view-content"> <table> <thead> <tr class="top_list"> <th>Assunto</th> <th>Tipo</th> <th colspan="3"></th> </tr> </thead> <tbody> <?php if( count($this->mensagens) > 0 ): foreach ( $this->mensagens as $mensagem ): ?> <tr> <td><?php echo $mensagem['assunto']; ?></td> <td><?php echo $mensagem['tipo']; ?></td> <td align="center"><a href="<?php echo $this->url(array( 'action' => 'escolher-mensagem', 'id' => $mensagem['id'] )); ?>" class="link_send" title="Enviar Campanha"></a></td> <td align="center"><a href="<?php echo $this->url(array( 'action' => 'mensagem-save', 'id' => $mensagem['id'] )) ?>" class="link_edit"></a></td> <td align="center"><a href="<?php echo $this->url(array( 'action' => 'mensagem-delete', 'id' => $mensagem['id'] )) ?>" class="link_remove"></a></td> </tr> <?php endforeach; ?> <?php endif; ?> </tbody> <tfoot> <tr> <td colspan="6">Quantidade: <?php echo count($this->mensagens); ?></td> </tr> </tfoot> </table> </div>
💾 保存文件
← 返回文件管理器