app.php 304 B

12345678910111213141516
  1. <?php
  2. $l = \OC::$server->getL10N('files_trashbin');
  3. // register hooks
  4. \OCA\Files_Trashbin\Trashbin::registerHooks();
  5. \OCA\Files\App::getNavigationManager()->add(
  6. array(
  7. "id" => 'trashbin',
  8. "appname" => 'files_trashbin',
  9. "script" => 'list.php',
  10. "order" => 50,
  11. "name" => $l->t('Deleted files')
  12. )
  13. );