2013-01-18 16:11:29 +04:00
|
|
|
<?php
|
2015-03-26 13:44:34 +03:00
|
|
|
/**
|
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* @author Christopher Schäpers <kondou@ts.unde.re>
|
|
|
|
* @author Florin Peter <github@florin-peter.de>
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
2015-10-05 21:54:56 +03:00
|
|
|
* @author Victor Dubiniuk <dubiniuk@owncloud.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
2015-08-11 22:21:32 +03:00
|
|
|
|
2014-08-31 12:05:59 +04:00
|
|
|
$l = \OC::$server->getL10N('files_trashbin');
|
2013-02-22 20:21:57 +04:00
|
|
|
|
2013-05-23 01:50:45 +04:00
|
|
|
// register hooks
|
2013-08-18 13:02:08 +04:00
|
|
|
\OCA\Files_Trashbin\Trashbin::registerHooks();
|
2014-05-08 18:24:24 +04:00
|
|
|
|
|
|
|
\OCA\Files\App::getNavigationManager()->add(
|
2014-05-09 00:06:30 +04:00
|
|
|
array(
|
|
|
|
"id" => 'trashbin',
|
|
|
|
"appname" => 'files_trashbin',
|
2014-05-12 21:54:20 +04:00
|
|
|
"script" => 'list.php',
|
2014-05-20 13:06:09 +04:00
|
|
|
"order" => 50,
|
2014-05-09 00:06:30 +04:00
|
|
|
"name" => $l->t('Deleted files')
|
|
|
|
)
|
2014-05-08 18:24:24 +04:00
|
|
|
);
|