6fd084243b
- fixed upload and storage statistics - fixed infinite scroll to use the correct contain for scroll detection - fixed unit test that sometimes fail for rename case - controls are now sticky again - fixed selection overlay to be aligned with the table - fixed "select all" checkbox that had id conflicts - fixed public page - fixed global actions permissions detection - fix when URL contains an invalid view id - viewer mode now hides the sidebar (ex: text editor) - added unit tests for trashbin - clean up storage info in template (most is retrieved via ajax call now)
15 lines
294 B
PHP
15 lines
294 B
PHP
<?php
|
|
$l = OC_L10N::get('files_trashbin');
|
|
|
|
// register hooks
|
|
\OCA\Files_Trashbin\Trashbin::registerHooks();
|
|
|
|
\OCA\Files\App::getNavigationManager()->add(
|
|
array(
|
|
"id" => 'trashbin',
|
|
"appname" => 'files_trashbin',
|
|
"script" => 'list.php',
|
|
"order" => 1,
|
|
"name" => $l->t('Deleted files')
|
|
)
|
|
);
|