libreqr/manifest.php

30 lines
948 B
PHP
Raw Normal View History

<?php require "config.inc.php"; ?>
2019-03-28 22:44:06 +01:00
{
"dir": "ltr",
"lang": "fr",
"name": "LibreQR",
"short_name": "LibreQR",
2020-03-15 21:19:01 +01:00
"description": "Générer un code QR",
"start_url": "<?php echo $instPath; ?>",
"scope": "<?php echo $instPath; ?>",
2019-03-28 22:44:06 +01:00
"display": "standalone",
"theme_color": "<?php echo $variablesTheme["bg"]; ?>",
"background_color": "<?php echo $variablesTheme["bg"]; ?>",
2019-03-28 22:44:06 +01:00
"orientation": "portrait",
"icons":
[
<?php for ($i = 0; $i < (count($themeDimensionsIcons) - 1); $i++) { ?>
{
"src": "themes/<?php echo $theme; ?>/icons/<?php echo $themeDimensionsIcons[$i]; ?>.png",
"sizes": "<?php echo $themeDimensionsIcons[$i]; ?>x<?php echo $themeDimensionsIcons[$i]; ?>",
"type": "image/png"
},
<?php } ?>
2019-03-28 22:44:06 +01:00
{
"src": "themes/<?php echo $theme; ?>/icons/<?php echo $themeDimensionsIcons[$i]; ?>.png",
"sizes": "<?php echo $themeDimensionsIcons[$i]; ?>x<?php echo $themeDimensionsIcons[$i]; ?>",
2019-03-28 22:44:06 +01:00
"type": "image/png"
}
]
}