diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-04-30 17:42:35 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-05-30 10:06:29 +0200 |
commit | 6ebc43650554f41eee2ae715b99a178b9c75c532 (patch) | |
tree | 8b1f0a76ec2b3281bbc6608d69f609ff79aff3ef /apps/files_sharing/templates | |
parent | dbbb6c5945f9c4d73695fa210be88d35ff35f026 (diff) | |
download | nextcloud-server-6ebc43650554f41eee2ae715b99a178b9c75c532.tar.gz nextcloud-server-6ebc43650554f41eee2ae715b99a178b9c75c532.zip |
Added sharing overview page (WIP)
- added sharing overview entries in the sidebar
- use OCS Share API to get the list of files
Diffstat (limited to 'apps/files_sharing/templates')
-rw-r--r-- | apps/files_sharing/templates/list.php | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/apps/files_sharing/templates/list.php b/apps/files_sharing/templates/list.php new file mode 100644 index 00000000000..276dc9da775 --- /dev/null +++ b/apps/files_sharing/templates/list.php @@ -0,0 +1,43 @@ +<?php /** @var $l OC_L10N */ ?> +<div id="controls"> + <div id="file_action_panel"></div> +</div> +<div id='notification'></div> + +<div id="emptycontent" class="hidden"><?php p($l->t('Nothing in here.'))?></div> + +<input type="hidden" name="dir" value="" id="dir"> + +<table id="filestable"> + <thead> + <tr> + <th id='headerName' class="hidden column-name"> + <div id="headerName-container"> + <input type="checkbox" id="select_all_trash" class="select-all"/> + <label for="select_all_trash"></label> + <a class="name sort columntitle" data-sort="name"><span><?php p($l->t( 'Name' )); ?></span><span class="sort-indicator"></span></a> + <span id="selectedActionsList" class='selectedActions'> + <a href="" class="undelete"> + <img class="svg" alt="<?php p($l->t( 'Restore' )); ?>" + src="<?php print_unescaped(OCP\image_path("core", "actions/history.svg")); ?>" /> + <?php p($l->t('Restore'))?> + </a> + </span> + </div> + </th> + <th id="headerSharedWith" class="hidden column-mtime"> + <a id="sharedwith" class="columntitle" data-sort="shareWith"><span><?php p($l->t( 'Shared with' )); ?></span><span class="sort-indicator"></span></a> + </th> + <th id="headerSharedWith" class="hidden column-mtime"> + <a id="shareType" class="columntitle" data-sort="shareType"><span><?php p($l->t( 'Type' )); ?></span><span class="sort-indicator"></span></a> + </th> + <th id="headerDate" class="hidden column-mtime"> + <a id="modified" class="columntitle" data-sort="mtime"><span><?php p($l->t( 'Shared since' )); ?></span><span class="sort-indicator"></span></a> + </th> + </tr> + </thead> + <tbody id="fileList"> + </tbody> + <tfoot> + </tfoot> +</table> |