index.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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"/>
  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. <img class="svg" alt=""
  30. src="<?php print_unescaped(OCP\image_path("core", "actions/history.svg")); ?>" />
  31. <?php p($l->t('Restore'))?>
  32. </a>
  33. </span>
  34. </div>
  35. </th>
  36. <th id="headerDate" class="hidden column-mtime">
  37. <a id="modified" class="columntitle" data-sort="mtime"><span><?php p($l->t( 'Deleted' )); ?></span><span class="sort-indicator"></span></a>
  38. <span class="selectedActions">
  39. <a href="" class="delete-selected">
  40. <?php p($l->t('Delete'))?>
  41. <img class="svg" alt=""
  42. src="<?php print_unescaped(OCP\image_path("core", "actions/delete.svg")); ?>" />
  43. </a>
  44. </span>
  45. </th>
  46. </tr>
  47. </thead>
  48. <tbody id="fileList">
  49. </tbody>
  50. <tfoot>
  51. </tfoot>
  52. </table>