2016-06-06 18:40:38 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-06-21 22:21:46 +03:00
|
|
|
* @copyright Copyright (c) 2016 Bjoern Schiessle <bjoern@schiessle.org>
|
|
|
|
* @copyright Copyright (c) 2016 Lukas Reschke <lukas@statuscode.ch>
|
2016-06-06 18:40:38 +03:00
|
|
|
*
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Bjoern Schiessle <bjoern@schiessle.org>
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
|
|
|
* @author Julius Härtl <jus@bitgrid.net>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-07-21 17:49:16 +03:00
|
|
|
*
|
2016-06-21 22:21:46 +03:00
|
|
|
* @license GNU AGPL version 3 or any later version
|
2016-06-06 18:40:38 +03:00
|
|
|
*
|
2016-06-21 22:21:46 +03:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2016-06-06 18:40:38 +03:00
|
|
|
* it under the terms of the GNU Affero General Public License as
|
2016-06-21 22:21:46 +03:00
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
2016-06-06 18:40:38 +03:00
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2016-06-21 22:21:46 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2016-06-06 18:40:38 +03:00
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2016-06-06 18:40:38 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2019-11-04 21:25:00 +03:00
|
|
|
use OCA\Theming\AppInfo\Application;
|
|
|
|
|
|
|
|
$app = \OC::$server->query(Application::class);
|
2018-07-10 15:59:15 +03:00
|
|
|
$app->getContainer()->registerCapability(\OCA\Theming\Capabilities::class);
|
2016-06-21 22:21:46 +03:00
|
|
|
|
2018-07-10 15:59:15 +03:00
|
|
|
$linkToCSS = \OC::$server->getURLGenerator()->linkToRoute(
|
|
|
|
'theming.Theming.getStylesheet',
|
|
|
|
[
|
|
|
|
'v' => \OC::$server->getConfig()->getAppValue('theming', 'cachebuster', '0'),
|
|
|
|
]
|
|
|
|
);
|
|
|
|
\OCP\Util::addHeader(
|
|
|
|
'link',
|
|
|
|
[
|
|
|
|
'rel' => 'stylesheet',
|
|
|
|
'href' => $linkToCSS,
|
|
|
|
]
|
|
|
|
);
|
2016-09-05 15:25:51 +03:00
|
|
|
|
2018-07-10 15:59:15 +03:00
|
|
|
$linkToJs = \OC::$server->getURLGenerator()->linkToRoute(
|
|
|
|
'theming.Theming.getJavascript',
|
|
|
|
[
|
|
|
|
'v' => \OC::$server->getConfig()->getAppValue('theming', 'cachebuster', '0'),
|
|
|
|
]
|
|
|
|
);
|
|
|
|
\OCP\Util::addHeader(
|
|
|
|
'script',
|
|
|
|
[
|
|
|
|
'src' => $linkToJs,
|
|
|
|
'nonce' => \OC::$server->getContentSecurityPolicyNonceManager()->getNonce()
|
|
|
|
], ''
|
2020-04-09 17:11:50 +03:00
|
|
|
);
|