Welcome to mirror list, hosted at ThFree Co, Russian Federation.

app.php « appinfo « files_trashbin « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: da502f0c11e76f9ff3352e35d4438f17354fa174 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
$l = \OC::$server->getL10N('files_trashbin');

// register hooks
\OCA\Files_Trashbin\Trashbin::registerHooks();

\OCA\Files\App::getNavigationManager()->add(
array(
	"id" => 'trashbin',
	"appname" => 'files_trashbin',
	"script" => 'list.php',
	"order" => 50,
	"name" => $l->t('Deleted files')
)
);