nextcloud/apps/files_trashbin/appinfo/app.php

16 lines
304 B
PHP
Raw Normal View History

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