2016-02-04 11:59:52 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
|
|
|
* @author Bjoern Schiessle <bjoern@schiessle.org>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Björn Schießle <bjoern@schiessle.org>
|
2016-02-04 11:59:52 +03:00
|
|
|
*
|
|
|
|
* @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-05-18 17:26:59 +03:00
|
|
|
use OCA\FederatedFileSharing\Notifier;
|
|
|
|
|
2016-07-12 19:48:00 +03:00
|
|
|
$app = new \OCA\FederatedFileSharing\AppInfo\Application();
|
|
|
|
$eventDispatcher = \OC::$server->getEventDispatcher();
|
2016-05-18 17:26:59 +03:00
|
|
|
|
2016-04-18 19:17:08 +03:00
|
|
|
$app->registerSettings();
|
2016-05-18 17:26:59 +03:00
|
|
|
|
|
|
|
$manager = \OC::$server->getNotificationManager();
|
|
|
|
$manager->registerNotifier(function() {
|
2016-11-28 19:23:42 +03:00
|
|
|
return \OC::$server->query(Notifier::class);
|
2017-03-08 02:19:24 +03:00
|
|
|
}, function() {
|
|
|
|
$l = \OC::$server->getL10N('files_sharing');
|
2016-05-18 17:26:59 +03:00
|
|
|
return [
|
|
|
|
'id' => 'files_sharing',
|
|
|
|
'name' => $l->t('Federated sharing'),
|
|
|
|
];
|
|
|
|
});
|
2016-07-12 19:48:00 +03:00
|
|
|
|
|
|
|
$federatedShareProvider = $app->getFederatedShareProvider();
|
|
|
|
|
|
|
|
$eventDispatcher->addListener(
|
|
|
|
'OCA\Files::loadAdditionalScripts',
|
|
|
|
function() use ($federatedShareProvider) {
|
|
|
|
if ($federatedShareProvider->isIncomingServer2serverShareEnabled()) {
|
|
|
|
\OCP\Util::addScript('federatedfilesharing', 'external');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|