mirror of
https://github.com/nextcloud/server.git
synced 2026-02-03 20:41:22 -05:00
- 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();
|