✏️ 正在编辑: index.phtml
路径:
/srv/systems_dir/yuppiecred-bkp/application/views/scripts/midia-origem/index.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local">Mídias</h1> <div id="filter"> <?php echo $this->form; ?> <div class="clear"></div> </div> <div id="view-content"> <form id="f_cidadess" method="post" > <table> <thead> <tr class="top_list"> <th>Nome</th> <th width="30"></th> <th width="30"></th> </tr> </thead> <tbody> <?php if(!$this->midias): ?> <tr> <td colspan="3">Nenhum registro encontrado.</td> </tr> <?php else: foreach ( $this->midias as $midia ): ?> <tr> <td><?= $midia['descricao'] ?></td> <td align="center"><a href="<?php echo $this->url(array( 'action' => 'save', 'id' => $midia['id'] )) ?>" class="link_edit"></a></td> <td align="center"><a href="<?php echo $this->url(array( 'action' => 'delete', 'id' => $midia['id'] )) ?>" class="link_remove"></a></td> </tr> <?php endforeach; endif ?> </tbody> </table> </form> </div>
💾 保存文件
← 返回文件管理器