PHP Web interface for generating QR codes
https://qr.antopie.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
768 B
27 lines
768 B
<?php require "inc.php"; ?>
|
|
{
|
|
"dir": "ltr",
|
|
"lang": "<?= $locale ?>",
|
|
"name": "LibreQR",
|
|
"short_name": "LibreQR",
|
|
"description": "<?= $loc['subtitle'] ?>",
|
|
"start_url": "<?= $rootPath; ?>",
|
|
"scope": "<?= $rootPath; ?>",
|
|
"display": "standalone",
|
|
"orientation": "portrait",
|
|
"icons":
|
|
[
|
|
<?php for ($i = 0; $i < (count($themeDimensionsIcons) - 1); $i++) { ?>
|
|
{
|
|
"src": "themes/<?= $theme; ?>/icons/<?= $themeDimensionsIcons[$i]; ?>.png",
|
|
"sizes": "<?= $themeDimensionsIcons[$i]; ?>x<?= $themeDimensionsIcons[$i]; ?>",
|
|
"type": "image/png"
|
|
},
|
|
<?php } ?>
|
|
{
|
|
"src": "themes/<?= $theme; ?>/icons/<?= $themeDimensionsIcons[$i]; ?>.png",
|
|
"sizes": "<?= $themeDimensionsIcons[$i]; ?>x<?= $themeDimensionsIcons[$i]; ?>",
|
|
"type": "image/png"
|
|
}
|
|
]
|
|
}
|
|
|