mirror of
https://github.com/nextcloud/server.git
synced 2026-02-27 18:37:17 +01:00
- added sharing overview entries in the sidebar - use OCS Share API to get the list of files
12 lines
239 B
PHP
12 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();
|