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.
|
|
|
|
*
|
|
|
|
* @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>
|
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-12-08 19:43:46 +03:00
|
|
|
// required for translation purpose
|
|
|
|
// t('Files')
|
2016-07-22 16:20:51 +03:00
|
|
|
$l = \OC::$server->getL10N('files');
|
2015-11-16 22:57:41 +03: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'),
|
|
|
|
];
|
|
|
|
});
|
2016-10-07 17:27:54 +03:00
|
|
|
|
|
|
|
\OCP\Util::connectHook('\OCP\Config', 'js', '\OCA\Files\App', 'extendJsConfig');
|