index.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php /** @var $l OC_L10N */ ?>
  2. <div id="controls">
  3. <div id="file_action_panel"></div>
  4. </div>
  5. <div id='notification'></div>
  6. <div id="emptycontent" class="hidden">
  7. <div class="icon-delete"></div>
  8. <h2><?php p($l->t('No deleted files')); ?></h2>
  9. <p><?php p($l->t('You will be able to recover deleted files from here')); ?></p>
  10. </div>
  11. <input type="hidden" name="dir" value="" id="dir">
  12. <div class="nofilterresults hidden">
  13. <div class="icon-search"></div>
  14. <h2><?php p($l->t('No entries found in this folder')); ?></h2>
  15. <p></p>
  16. </div>
  17. <table id="filestable">
  18. <thead>
  19. <tr>
  20. <th id='headerName' class="hidden column-name">
  21. <div id="headerName-container">
  22. <input type="checkbox" id="select_all_trash" class="select-all checkbox"/>
  23. <label for="select_all_trash">
  24. <span class="hidden-visually"><?php p($l->t('Select all'))?></span>
  25. </label>
  26. <a class="name sort columntitle" data-sort="name"><span><?php p($l->t( 'Name' )); ?></span><span class="sort-indicator"></span></a>
  27. <span id="selectedActionsList" class='selectedActions'>
  28. <a href="" class="undelete">
  29. <span class="icon icon-history"></span>
  30. <span><?php p($l->t('Restore'))?></span>
  31. </a>
  32. </span>
  33. </div>
  34. </th>
  35. <th id="headerDate" class="hidden column-mtime">
  36. <a id="modified" class="columntitle" data-sort="mtime"><span><?php p($l->t( 'Deleted' )); ?></span><span class="sort-indicator"></span></a>
  37. <span class="selectedActions">
  38. <a href="" class="delete-selected">
  39. <span><?php p($l->t('Delete'))?></span>
  40. <span class="icon icon-delete"></span>
  41. </a>
  42. </span>
  43. </th>
  44. </tr>
  45. </thead>
  46. <tbody id="fileList">
  47. </tbody>
  48. <tfoot>
  49. </tfoot>
  50. </table>