6ebc436505
- added sharing overview entries in the sidebar - use OCS Share API to get the list of files
11 lines
239 B
PHP
11 lines
239 B
PHP
<?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();
|