✏️ 正在编辑: lista-operadores.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/callcenter/lista-operadores.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local">Operadores do Callcenter</h1> <div id="filter"> <?php echo $this->form; ?> <div class="clear"></div> </div> <div id="view-content"> <table> <thead> <tr class="top_list"> <th>ID Corretor</th> <th>Corretor Vinculado</th> <th>Nome</th> <th>Login</th> <th>Ramal</th> <th>ID Discador</th> <th colspan="3"></th> </tr> </thead> <tbody> <?php if( count($this->usuarios) > 0 ): foreach( $this->usuarios as $usuario ): ?> <tr> <td><?php echo $usuario['corretor_id']; ?></td> <td><?php echo $usuario['corretor']; ?></td> <td><?php echo $usuario['nome']; ?></td> <td><?php echo $usuario['login']; ?></td> <td><?php echo $usuario['ramal_numero']; ?></td> <td><?php echo $usuario['discador_id']; ?></td> <td align="center"><a href="#" onclick="openWin('<?php echo $this->url(array('controller' => 'corretor', 'action' => 'operador-campanhas', 'id' => $usuario['id'])) ?>', 790, 500, 1)" class="link_view"></a></td> <td align="center"><a href="<?php echo $this->url(array( 'controller' => 'usuario', 'action' => 'save', 'id' => $usuario['id'] )) ?>" class="link_edit"></a></td> <td align="center"><a href="<?php echo $this->url(array('controller' => 'usuario', 'action' => 'delete', 'id' => $usuario['id'] )) ?>" class="link_remove"></a></td> </tr> <?php endforeach; endif; ?> </tbody> </table> </div>
💾 保存文件
← 返回文件管理器