Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

index.php 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <div id="controls">
  2. <div id="file_action_panel"></div>
  3. </div>
  4. <div id='notification'></div>
  5. <div id="emptycontent" class="hidden"><?php p($l->t('Nothing in here. Your trash bin is empty!'))?></div>
  6. <input type="hidden" id="permissions" value="0"></input>
  7. <input type="hidden" id="disableSharing" data-status="<?php p($_['disableSharing']); ?>"></input>
  8. <input type="hidden" name="dir" value="<?php p($_['dir']) ?>" id="dir">
  9. <table id="filestable">
  10. <thead>
  11. <tr>
  12. <th id='headerName'>
  13. <div id="headerName-container">
  14. <input type="checkbox" id="select_all" />
  15. <label for="select_all"></label>
  16. <span class='name'><?php p($l->t( 'Name' )); ?></span>
  17. <span class='selectedActions'>
  18. <a href="" class="undelete">
  19. <img class="svg" alt="<?php p($l->t( 'Restore' )); ?>"
  20. src="<?php print_unescaped(OCP\image_path("core", "actions/history.svg")); ?>" />
  21. <?php p($l->t('Restore'))?>
  22. </a>
  23. </span>
  24. </div>
  25. </th>
  26. <th id="headerDate">
  27. <span id="modified"><?php p($l->t( 'Deleted' )); ?></span>
  28. <span class="selectedActions">
  29. <a href="" class="delete-selected">
  30. <?php p($l->t('Delete'))?>
  31. <img class="svg" alt="<?php p($l->t('Delete'))?>"
  32. src="<?php print_unescaped(OCP\image_path("core", "actions/delete.svg")); ?>" />
  33. </a>
  34. </span>
  35. </th>
  36. </tr>
  37. </thead>
  38. <tbody id="fileList">
  39. </tbody>
  40. <tfoot>
  41. </tfoot>
  42. </table>