2011-03-03 23:55:32 +03:00
|
|
|
<?php
|
2015-03-26 13:44:34 +03:00
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jakob Sack <mail@jakobsack.de>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
|
|
|
*
|
|
|
|
* @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/>
|
|
|
|
*
|
|
|
|
*/
|
2016-07-22 16:20:51 +03:00
|
|
|
$l = \OC::$server->getL10N('files');
|
2015-11-16 22:57:41 +03:00
|
|
|
|
2015-03-17 14:14:34 +03:00
|
|
|
\OC::$server->getNavigationManager()->add(function () {
|
2015-11-16 22:57:41 +03:00
|
|
|
$urlGenerator = \OC::$server->getURLGenerator();
|
2015-03-17 14:14:34 +03:00
|
|
|
$l = \OC::$server->getL10N('files');
|
|
|
|
return [
|
|
|
|
'id' => 'files_index',
|
|
|
|
'order' => 0,
|
2015-11-16 22:57:41 +03:00
|
|
|
'href' => $urlGenerator->linkToRoute('files.view.index'),
|
2016-04-06 11:18:56 +03:00
|
|
|
'icon' => $urlGenerator->imagePath('core', 'places/files.svg'),
|
2015-03-17 14:14:34 +03:00
|
|
|
'name' => $l->t('Files'),
|
|
|
|
];
|
|
|
|
});
|
2011-04-17 22:00:07 +04:00
|
|
|
|
2014-12-02 19:31:04 +03:00
|
|
|
\OC::$server->getSearch()->registerProvider('OC\Search\Provider\File', array('apps' => array('files')));
|
2013-04-16 15:07:55 +04:00
|
|
|
|
2015-03-17 14:14:34 +03:00
|
|
|
$templateManager = \OC_Helper::getFileTemplateManager();
|
2013-08-08 01:48:44 +04:00
|
|
|
$templateManager->registerTemplate('text/html', 'core/templates/filetemplates/template.html');
|
2013-08-18 23:11:11 +04:00
|
|
|
$templateManager->registerTemplate('application/vnd.oasis.opendocument.presentation', 'core/templates/filetemplates/template.odp');
|
|
|
|
$templateManager->registerTemplate('application/vnd.oasis.opendocument.text', 'core/templates/filetemplates/template.odt');
|
|
|
|
$templateManager->registerTemplate('application/vnd.oasis.opendocument.spreadsheet', 'core/templates/filetemplates/template.ods');
|
2014-05-09 00:06:30 +04:00
|
|
|
|
2016-07-22 16:20:51 +03:00
|
|
|
\OCA\Files\App::getNavigationManager()->add(function () use ($l) {
|
2015-03-17 14:14:34 +03:00
|
|
|
return [
|
|
|
|
'id' => 'files',
|
|
|
|
'appname' => 'files',
|
|
|
|
'script' => 'list.php',
|
|
|
|
'order' => 0,
|
|
|
|
'name' => $l->t('All files'),
|
|
|
|
];
|
|
|
|
});
|
2015-02-13 15:37:10 +03:00
|
|
|
|
2016-07-22 16:20:51 +03:00
|
|
|
\OCA\Files\App::getNavigationManager()->add(function () use ($l) {
|
|
|
|
return [
|
|
|
|
'id' => 'recent',
|
|
|
|
'appname' => 'files',
|
|
|
|
'script' => 'recentlist.php',
|
|
|
|
'order' => 2,
|
|
|
|
'name' => $l->t('Recent'),
|
|
|
|
];
|
|
|
|
});
|
|
|
|
|
2015-02-13 15:37:10 +03:00
|
|
|
\OC::$server->getActivityManager()->registerExtension(function() {
|
|
|
|
return new \OCA\Files\Activity(
|
|
|
|
\OC::$server->query('L10NFactory'),
|
2015-03-25 20:21:30 +03:00
|
|
|
\OC::$server->getURLGenerator(),
|
|
|
|
\OC::$server->getActivityManager(),
|
2015-03-30 18:21:06 +03:00
|
|
|
new \OCA\Files\ActivityHelper(
|
|
|
|
\OC::$server->getTagManager()
|
|
|
|
),
|
2015-11-30 11:42:11 +03:00
|
|
|
\OC::$server->getDatabaseConnection(),
|
2015-03-25 20:21:30 +03:00
|
|
|
\OC::$server->getConfig()
|
2015-02-13 15:37:10 +03:00
|
|
|
);
|
|
|
|
});
|