list.php 1011 B

123456789101112131415161718192021222324252627282930313233
  1. <?php /** @var $l \OCP\IL10N */ ?>
  2. <div id='notification'></div>
  3. <div id="emptycontent" class="hidden"></div>
  4. <input type="hidden" name="dir" value="" id="dir">
  5. <div class="nofilterresults hidden">
  6. <div class="icon-search"></div>
  7. <h2><?php p($l->t('No entries found in this folder')); ?></h2>
  8. </div>
  9. <table id="filestable">
  10. <thead>
  11. <tr>
  12. <th id='headerName' class="hidden column-name">
  13. <div id="headerName-container">
  14. <a class="name sort columntitle" data-sort="name"><span><?php p($l->t( 'Name' )); ?></span><span class="sort-indicator"></span></a>
  15. </div>
  16. </th>
  17. <th id="headerDate" class="hidden column-mtime">
  18. <a id="modified" class="columntitle" data-sort="mtime"><span><?php p($l->t( 'Share time' )); ?></span><span class="sort-indicator"></span></a>
  19. </th>
  20. <th class="hidden column-expiration">
  21. <a class="columntitle"><span><?php p($l->t( 'Expiration date' )); ?></span></a>
  22. </th>
  23. </tr>
  24. </thead>
  25. <tbody id="fileList">
  26. </tbody>
  27. <tfoot>
  28. </tfoot>
  29. </table>