1
0

list.php 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-FileCopyrightText: 2014-2016 ownCloud, Inc.
  5. * SPDX-License-Identifier: AGPL-3.0-only
  6. */
  7. ?>
  8. <div class="files-controls">
  9. <div class="actions creatable hidden">
  10. <div id="uploadprogresswrapper">
  11. </div>
  12. </div>
  13. <div class="notCreatable notPublic hidden">
  14. <div class="icon-alert-outline"></div>
  15. <?php p($l->t('You do not have permission to upload or create files here'))?>
  16. </div>
  17. <?php /* Note: the template attributes are here only for the public page. These are normally loaded
  18. through ajax instead (updateStorageStatistics).
  19. */ ?>
  20. <input type="hidden" id="permissions" value="">
  21. <input type="hidden" id="free_space" value="<?php isset($_['freeSpace']) ? p($_['freeSpace']) : '' ?>">
  22. <?php if (isset($_['dirToken'])):?>
  23. <input type="hidden" id="publicUploadRequestToken" name="requesttoken" value="<?php p($_['requesttoken']) ?>" />
  24. <input type="hidden" id="dirToken" name="dirToken" value="<?php p($_['dirToken']) ?>" />
  25. <?php endif;?>
  26. <input type="hidden" class="max_human_file_size"
  27. value="(max <?php isset($_['uploadMaxHumanFilesize']) ? p($_['uploadMaxHumanFilesize']) : ''; ?>)">
  28. </div>
  29. <div class="filelist-header"></div>
  30. <div class="emptyfilelist emptycontent hidden">
  31. <div class="icon-folder"></div>
  32. <h2><?php p($l->t('No files in here')); ?></h2>
  33. <p class="uploadmessage hidden"><?php p($l->t('Upload some content or sync with your devices!')); ?></p>
  34. </div>
  35. <div class="nofilterresults emptycontent hidden">
  36. <div class="icon-search"></div>
  37. <h2><?php p($l->t('No entries found in this folder')); ?></h2>
  38. <p></p>
  39. </div>
  40. <table class="files-filestable list-container <?php p($_['showgridview'] ? 'view-grid' : '') ?>" data-allow-public-upload="<?php p($_['publicUploadEnabled'])?>" data-preview-x="250" data-preview-y="250">
  41. <thead>
  42. <tr>
  43. <th class="hidden column-selection">
  44. <input type="checkbox" id="select_all_files" class="select-all checkbox"/>
  45. <label for="select_all_files">
  46. <span class="hidden-visually"><?php p($l->t('Select all'))?></span>
  47. </label>
  48. </th>
  49. <th class="hidden column-name">
  50. <div class="column-name-container">
  51. <a class="name sort columntitle" onclick="event.preventDefault()" href="#" data-sort="name">
  52. <span><?php p($l->t('Name')); ?></span>
  53. <span class="sort-indicator"></span>
  54. </a>
  55. <span class="selectedActions">
  56. <a href="#" onclick="event.preventDefault()" class="actions-selected">
  57. <span class="icon icon-more"></span>
  58. <span><?php p($l->t('Actions'))?></span>
  59. </a>
  60. </span>
  61. </div>
  62. </th>
  63. <th class="hidden column-size">
  64. <a class="size sort columntitle" href="#" onclick="event.preventDefault()" data-sort="size"><span><?php p($l->t('Size')); ?></span><span class="sort-indicator"></span></a>
  65. </th>
  66. <th class="hidden column-mtime">
  67. <a class="columntitle" href="#" onclick="event.preventDefault()" data-sort="mtime"><span><?php p($l->t('Modified')); ?></span><span class="sort-indicator"></span></a>
  68. </th>
  69. </tr>
  70. </thead>
  71. <tbody class="files-fileList">
  72. </tbody>
  73. <tfoot>
  74. </tfoot>
  75. </table>
  76. <div class="filelist-footer"></div>
  77. <div class="hiddenuploadfield">
  78. <input type="file" id="file_upload_start" class="hiddenuploadfield" name="files[]" />
  79. </div>
  80. <div id="uploadsize-message" title="<?php p($l->t('Upload too large'))?>">
  81. <p>
  82. <?php p($l->t('The files you are trying to upload exceed the maximum size for file uploads on this server.'));?>
  83. </p>
  84. </div>