server/apps/files_trashbin/appinfo/app.php

18 lines
406 B
PHP
Raw Normal View History

2013-01-18 12:11:29 +00:00
<?php
$l = OC_L10N::get('files_trashbin');
2013-02-22 16:21:57 +00:00
OC::$CLASSPATH['OCA\Files_Trashbin\Exceptions\CopyRecursiveException'] = 'files_trashbin/lib/exceptions.php';
// register hooks
\OCA\Files_Trashbin\Trashbin::registerHooks();
\OCA\Files\App::getNavigationManager()->add(
array(
"id" => 'trashbin',
"appname" => 'files_trashbin',
"script" => 'list.php',
2014-05-20 09:06:09 +00:00
"order" => 50,
"name" => $l->t('Deleted files')
)
);