✏️ 正在编辑: mensagens.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/callcenter/mensagens.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<table> <thead> <tr class="top_list"> <th>Campanha</th> <th>Mensagem</th> <th>Tipo</th> <th>Status</th> <th>Data Envio</th> </tr> </thead> <tbody> <?php if( count($this->historico) > 0 ): foreach ( $this->historico as $msg ): ?> <tr> <?php $modelMensagem = new Model_CallcenterMensagem(); $campanha = $msg->findParentRow('Model_DbTable_CallcenterCampanha'); $mensagem = $msg->findParentRow('Model_DbTable_CallcenterMensagem'); $cliente = $msg->findParentRow('Model_DbTable_CallcenterBase'); $dataEnvio = new Zend_Date($msg->data_envio); ?> <td><?php echo $campanha->nome; ?></td> <td><?php echo $mensagem->assunto; ?></td> <td><?php echo $msg['tipo']; ?></td> <td><?php echo $msg['retorno']; ?></td> <td><?php echo $dataEnvio->get('dd/MM/yyyy HH:mm:ss'); ?></td> </tr> <?php endforeach; endif; ?> </tbody> <tfoot> <tr> <td colspan="4">Quantidade: <?php echo count($this->historico); ?></td> </tr> </tfoot> </table>
💾 保存文件
← 返回文件管理器