mirror of
https://github.com/nextcloud/server.git
synced 2026-04-22 06:37:56 -04:00
- added new OCA.Files namespace for files classes - the sidebar can now switch between views/containers - the trashbin renders in its own container but currently doesn't work due to overrides - added app.js as entry point for JS code (ideally all other files should only contain classes and not trigger anything)
16 lines
439 B
PHP
16 lines
439 B
PHP
<?php
|
|
|
|
// Check if we are a user
|
|
OCP\User::checkLoggedIn();
|
|
|
|
|
|
$tmpl = new OCP\Template('files_trashbin', 'index', '');
|
|
// TODO: re-enable after making sure the scripts doesn't
|
|
// override the files app
|
|
/*
|
|
OCP\Util::addScript('files_trashbin', 'disableDefaultActions');
|
|
OCP\Util::addStyle('files_trashbin', 'trash');
|
|
OCP\Util::addScript('files_trashbin', 'filelist');
|
|
OCP\Util::addScript('files_trashbin', 'trash');
|
|
*/
|
|
$tmpl->printPage();
|