2016-03-04 15:56:13 +03:00
|
|
|
<?php
|
2018-01-17 15:42:02 +03:00
|
|
|
declare(strict_types=1);
|
2018-01-18 14:25:52 +03:00
|
|
|
/**
|
|
|
|
* @copyright (c) 2018 Joas Schilling <coding@schilljs.com>
|
|
|
|
*
|
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
|
|
|
*
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later. See the COPYING file.
|
|
|
|
*/
|
|
|
|
if (\OC::$server->getConfig()->getSystemValue('debug', false)) {
|
|
|
|
script('updatenotification', 'vue');
|
|
|
|
} else {
|
|
|
|
script('updatenotification', 'vue.min');
|
|
|
|
}
|
|
|
|
script('updatenotification', [
|
|
|
|
'components/root',
|
|
|
|
'admin',
|
|
|
|
]);
|
|
|
|
style('updatenotification', 'admin');
|
|
|
|
/** @var array $_ */
|
2016-03-04 15:56:13 +03:00
|
|
|
?>
|
2018-01-18 14:25:52 +03:00
|
|
|
<div id="updatenotification" data-json="<?php p($_['json']); ?>"></div>
|