diff options
Diffstat (limited to 'apps/files_trashbin/list.php')
-rw-r--r-- | apps/files_trashbin/list.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/apps/files_trashbin/list.php b/apps/files_trashbin/list.php new file mode 100644 index 00000000000..b4047b82ef9 --- /dev/null +++ b/apps/files_trashbin/list.php @@ -0,0 +1,11 @@ +<?php + +// Check if we are a user +OCP\User::checkLoggedIn(); + + +$tmpl = new OCP\Template('files_trashbin', 'index', ''); +OCP\Util::addStyle('files_trashbin', 'trash'); +OCP\Util::addScript('files_trashbin', 'app'); +OCP\Util::addScript('files_trashbin', 'filelist'); +$tmpl->printPage(); |