✏️ 正在编辑: alocar-operadores.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/callcenter-campanha/alocar-operadores.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local">Alocar Operadores</h1> <div id="filter"> <?php echo $this->form; ?> <div class="clear"></div> </div> <div id="view-content"> <form action="<?php echo $this->url(['action' => 'alocar-desalocar-operadores']); ?>" method="post" onsubmit="return validarChecks(this)"> <table> <thead> <tr class="top_list"> <th>Nome</th> <th>Operador</th> <th align="center"><input type="checkbox" name="control" id="control" value="all" onclick="myOptions.check(this)" /></th> </tr> </thead> <tbody> <?php if( count($this->operadores) > 0 ): foreach( $this->operadores as $operador ): ?> <tr> <td><?php echo $operador['nome']; ?></td> <td><?php echo $operador['login']; ?></td> <td><input type="checkbox" name="operadores[]" id="checks[]" value="<?php echo $operador['id'] ?>" /></td> </tr> <?php endforeach; endif; ?> </tbody> </table> <dl> <dd> <?php $campanhas = $this->form->getValue('campanhas') ?: []; ?> <?php $campanhas = implode(',', $campanhas); ?> <input type="hidden" value="<?php echo $campanhas ?>" name="campanhas" class="bt_apply"/> <label for="opcoes">Opções</label> <select name="opcoes" id="opcoes"> <option value=""></option> <option value="1">Alocar</option> <option value="2">Desalocar</option> </select> <input type="submit" value="Ok" class="bt_apply"/> </dd> </dl> </form> </div>
💾 保存文件
← 返回文件管理器