forked from jeedom/core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json.php
More file actions
30 lines (30 loc) · 755 Bytes
/
manifest.json.php
File metadata and controls
30 lines (30 loc) · 755 Bytes
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
27
28
29
30
<?php
require_once dirname(__FILE__) . "/core/php/core.inc.php";
header('Content-Type: application/json');
?>
{
"short_name": "<?php echo config::byKey('product_name'); ?>",
"background_color": "#ffffff",
"theme_color": "#94ca02",
"name": "<?php echo config::byKey('product_name'); ?>",
"gcm_sender_id": "103953800507",
"start_url": "index.php",
"display": "standalone",
"icons": [
{
"src": "<?php echo config::byKey('product_icon'); ?>",
"sizes": "25x25",
"type": "image/png"
},
{
"src": "<?php echo config::byKey('product_icon192'); ?>",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "<?php echo config::byKey('product_icon512'); ?>",
"sizes": "512x512",
"type": "image/png"
}
]
}