Blame view
sources/apps/files_trashbin/appinfo/app.php
406 Bytes
|
03e52840d
|
1 |
<?php |
|
6d9380f96
|
2 |
$l = OC_L10N::get('files_trashbin');
|
|
03e52840d
|
3 |
|
|
6d9380f96
|
4 |
OC::$CLASSPATH['OCA\Files_Trashbin\Exceptions\CopyRecursiveException'] = 'files_trashbin/lib/exceptions.php'; |
|
03e52840d
|
5 6 7 |
// register hooks \OCA\Files_Trashbin\Trashbin::registerHooks(); |
|
6d9380f96
|
8 9 10 11 12 13 14 15 16 17 |
\OCA\Files\App::getNavigationManager()->add(
array(
"id" => 'trashbin',
"appname" => 'files_trashbin',
"script" => 'list.php',
"order" => 50,
"name" => $l->t('Deleted files')
)
);
|