✏️ 正在编辑: localizar-arquivos.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/sincronizacao/localizar-arquivos.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local">Sincronizar - Localizar Arquivos de Importação</h1> <div class="result_content" style="display: none;" > </div> <div id="filtro"> <?php echo $this->form; ?> </div> <div id="view-content"> <form> <table> <thead> <tr class="top_list"> <th align="center"><input type="checkbox" name="control" id="control" value="all" onclick="myOptions.check(this)" /></th> <th>Arquivo</th> <th style='text-align: center; width: 90px'>Tamanho</th> </tr> </thead> <?php if( count($this->files) > 0 ): ?> <tbody> <?php foreach ( $this->files as $key => $file ): ?> <tr id="file_<?php echo $key; ?>"> <td><input type="checkbox" name="ck_arquivo[<?php echo $key ?>]" id="checks[]" value="<?php echo $file ?>" /></td> <td><?php echo $file; ?></td> <td align="right" data-value="<?php echo sprintf("%u", filesize(getcwd() . '/downloads/' . $this->bancoId . '/' . $file)); ?>"><?php echo String_Refatorar::bytesConverter(sprintf("%u", filesize(getcwd() . '/downloads/' . $this->bancoId . '/' . $file))); ?></td> </tr> <?php endforeach; ?> </tbody> <tfoot> <tr> <td colspan="2">Total: <?php echo count($this->files); ?></td> </tr> </tfoot> <?php endif; ?> </table> <?php if( count($this->files) > 0 ){ ?> <input type="button" name="sincronizar" onclick="sincronizarTudoFtp(<?php echo $this->form->banco_id->getValue(); ?>, 0)" value="Sincronizar Selecionados"> <?php } ?> </form> </div>
💾 保存文件
← 返回文件管理器