✏️ 正在编辑: arquivos-importados.phtml
路径:
/srv/systems_dir/yuppiecred-bkp/application/views/scripts/sincronizacao/arquivos-importados.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local">Arquivos Importados</h1> <div id="filter"> <?php echo $this->form; ?> <div class="clear"></div> </div> <div id="view-content"> <form id="arquivos_importados" method="post" action="<?= $this->url(array('controller' => 'sincronizacao', 'action' => 'excluir-arquivos')); ?>" onsubmit="validarChecks(this)"> <table> <thead> <tr class="top_list"> <th>Arquivo</th> <th>Data Importação</th> <th></th> <th class="check_control"><input type="checkbox" name="control" id="control" value="all" onclick="myOptions.check(this)" /></th> </tr> </thead> <tbody> <?php foreach ( $this->arquivos as $arquivo ): ?> <tr> <td><a href="<?php echo $this->baseUrl() . "/sincronizacao/nao-baixados/arquivo/{$arquivo['arquivo']}" ?>" target="_blank"><?php echo $arquivo['arquivo']; ?></a></td> <td><?php echo $this->dateFormat($arquivo['data_importacao']); ?></td> <td align="center"><a href="<?php echo $this->url(array( 'action' => 'excluir-arquivos', 'id' => $arquivo['id'] )) ?>" class="link_remove"></a></td> <td align="center"><input type="checkbox" name="arquivos[]" id="checks[]" value="<?php echo $arquivo['id'] ?>" /></td> </tr> <?php endforeach; ?> </tbody> <tfoot> <tr> <td colspan="2">Total: <?php echo count($this->arquivos); ?></td> </tr> <tr> <td colspan="3"> <input type="submit" value="Excluir selecionados" /> </td> </tr> </tfoot> </table> </form> </div>
💾 保存文件
← 返回文件管理器