✏️ 正在编辑: telefones_avulso.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/callcenter-base/telefones_avulso.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php echo $this->formTelefone; ?> <form method="post" action="<?php echo $this->url(array('controller' => 'callcenter', 'action' => 'telefone-obs')); ?>" class="clear"> <table id="lista_telefones"> <thead> <tr class="top_list"> <th>Nº Telefone</th> <th>Observações</th> <th></th> </tr> </thead> <tbody> <?php if(count($this->telefones)): foreach($this->telefones as $telefone): ?> <tr> <td><?php echo $telefone['fone']; ?></td> <td> <input type="text" value="<?php echo $telefone['obs']; ?>" name="obs[<?php echo $telefone['id']; ?>]" size="50" maxlength="255" /> </td> <?php if(isset(Yuppie_Auth::getIdentity()->operadoras)): ?> <td align="center"><a href="#<?php echo $telefone['fone']; ?>" class="link_phone" title="Fazer ligação"></a></td> <?php endif; ?> <td align="center"><a href="/callcenter-base/delete-telefone/id/<?= $telefone['id']; ?>" class="link_remove" data-ajax="true"></a></td> </tr> <?php endforeach; endif; ?> </tbody> <tfoot> <tr> <td colspan="4"> <input type="submit" value="Salvar" class="bt_save" /> </td> </tr> </tfoot> </table> </form>
💾 保存文件
← 返回文件管理器