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/list.php | |
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/list.php')
-rw-r--r-- | apps/files_sharing/list.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/apps/files_sharing/list.php b/apps/files_sharing/list.php new file mode 100644 index 00000000000..bad690ea95f --- /dev/null +++ b/apps/files_sharing/list.php @@ -0,0 +1,11 @@ +<?php + +// Check if we are a user +OCP\User::checkLoggedIn(); + +$tmpl = new OCP\Template('files_sharing', 'list', ''); + +OCP\Util::addScript('files_sharing', 'app'); +OCP\Util::addScript('files_sharing', 'sharedfilelist'); + +$tmpl->printPage(); |