2013-01-18 12:11:29 +00:00
|
|
|
<?php
|
2014-08-31 08:05:59 +00:00
|
|
|
$l = \OC::$server->getL10N('files_trashbin');
|
2013-02-22 16:21:57 +00:00
|
|
|
|
2013-05-22 21:50:45 +00:00
|
|
|
// register hooks
|
2013-08-18 09:02:08 +00:00
|
|
|
\OCA\Files_Trashbin\Trashbin::registerHooks();
|
2014-05-08 14:24:24 +00:00
|
|
|
|
|
|
|
\OCA\Files\App::getNavigationManager()->add(
|
2014-05-08 20:06:30 +00:00
|
|
|
array(
|
|
|
|
"id" => 'trashbin',
|
|
|
|
"appname" => 'files_trashbin',
|
2014-05-12 17:54:20 +00:00
|
|
|
"script" => 'list.php',
|
2014-05-20 09:06:09 +00:00
|
|
|
"order" => 50,
|
2014-05-08 20:06:30 +00:00
|
|
|
"name" => $l->t('Deleted files')
|
|
|
|
)
|
2014-05-08 14:24:24 +00:00
|
|
|
);
|