您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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