blob: 2314604111a08136f722449a9994437538fda34a (
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
|
<?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
*
* return new TemplateResponse('settings', 'settings', ['serverData' => $serverData]);
*
*/
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 } ?>
|