checkdirfile.php 622 B

123456789101112131415161718192021
  1. <form class="install-form">
  2. <table class="table">
  3. <caption><h2>目录/文件权限</h2></caption>
  4. <thead>
  5. <tr>
  6. <th>目录/文件</th>
  7. <th>所需状态</th>
  8. <th>当前状态</th>
  9. </tr>
  10. </thead>
  11. <tbody>
  12. <?php foreach ($items as $item): ?>
  13. <tr>
  14. <td><?= $item[3] ?></td>
  15. <td><i class="ico-success">&nbsp;</i>可写</td>
  16. <td><i class="ico-<?= $item[2] ?>">&nbsp;</i><?= $item[1] ?></td>
  17. </tr>
  18. <?php endforeach; ?>
  19. </tbody>
  20. </table>
  21. </form>