libreqr/manifest.php

28 lines
821 B
PHP
Raw Normal View History

<?php // This file is part of LibreQR, which is distributed under the GNU AGPLv3+ license
require "inc.php"; ?>
2019-03-28 22:44:06 +01:00
{
"dir": "ltr",
"lang": "<?= $locale ?>",
"name": "LibreQR",
"short_name": "LibreQR",
"description": "<?= $loc['subtitle'] ?>",
2020-11-03 21:28:29 +01:00
"start_url": "<?= $rootPath; ?>",
"scope": "<?= $rootPath; ?>",
2021-07-11 14:00:35 +02:00
"orientation": "any",
2019-03-28 22:44:06 +01:00
"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 } ?>
2019-03-28 22:44:06 +01:00
{
"src": "themes/<?= $theme; ?>/icons/<?= $themeDimensionsIcons[$i]; ?>.png",
"sizes": "<?= $themeDimensionsIcons[$i]; ?>x<?= $themeDimensionsIcons[$i]; ?>",
2019-03-28 22:44:06 +01:00
"type": "image/png"
}
]
}