blob: 299396f299d34f3a96414d3708118d6e29b6e6cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?php
/**
* @copyright Copyright (c) 2018, John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* @author John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
*
* @license GNU AGPL version 3 or any later version
*
* This is the default empty template to load Vue!
* Do your cbackend computations into a php files
* then serve this file as template and include your data into
* the $serverData template variable
*
* $tmpl = new OC_Template('settings', 'settings', 'user');
* $tmpl->assign('serverData', $serverData);
* $tmpl->printPage();
*/
script('settings', 'main');
style('settings', 'settings');
// Did we have some data to inject ?
if(is_array($_['serverData'])) {
?>
<span id="serverData" data-server="<?php p(json_encode($_['serverData']));?>"></span>
<?php } ?>
|