Update manifest output with config/theme info
This commit is contained in:
parent
b9325251e8
commit
930d395d7b
|
@ -22,7 +22,7 @@
|
|||
namespace Friendica\Module;
|
||||
|
||||
use Friendica\BaseModule;
|
||||
use Friendica\Core\Renderer;
|
||||
use Friendica\Core;
|
||||
use Friendica\DI;
|
||||
|
||||
class Manifest extends BaseModule
|
||||
|
@ -31,18 +31,19 @@ class Manifest extends BaseModule
|
|||
{
|
||||
$config = DI::config();
|
||||
|
||||
$tpl = Renderer::getMarkupTemplate('manifest.tpl');
|
||||
|
||||
header('Content-type: application/manifest+json');
|
||||
|
||||
$touch_icon = $config->get('system', 'touch_icon', 'images/friendica-128.png');
|
||||
if ($touch_icon == '') {
|
||||
$touch_icon = 'images/friendica-128.png';
|
||||
}
|
||||
$touch_icon = $config->get('system', 'touch_icon') ?: 'images/friendica-128.png';
|
||||
|
||||
$output = Renderer::replaceMacros($tpl, [
|
||||
'$touch_icon' => $touch_icon,
|
||||
'$title' => $config->get('config', 'sitename', 'Friendica'),
|
||||
$theme = DI::config()->get('system', 'theme');
|
||||
|
||||
$tpl = Core\Renderer::getMarkupTemplate('manifest.tpl');
|
||||
$output = Core\Renderer::replaceMacros($tpl, [
|
||||
'$touch_icon' => $touch_icon,
|
||||
'$title' => $config->get('config', 'sitename', 'Friendica'),
|
||||
'$description' => $config->get('config', 'info', DI::l10n()->t('A Decentralized Social Network')),
|
||||
'$background_color' => Core\Theme::getBackgroundColor($theme),
|
||||
'$theme_color' => Core\Theme::getThemeColor($theme),
|
||||
]);
|
||||
|
||||
echo $output;
|
||||
|
|
|
@ -2,8 +2,17 @@
|
|||
"name": "{{$title}}",
|
||||
"start_url": "{{$baseurl}}",
|
||||
"display": "standalone",
|
||||
"description": "A Decentralized Social Network",
|
||||
"description": "{{$description}}",
|
||||
{{if $background_color}}
|
||||
"theme_color": "{{$theme_color}}",
|
||||
{{/if}}
|
||||
{{if $background_color}}
|
||||
"background_color": "{{$background_color}}",
|
||||
{{/if}}
|
||||
"short_name": "Friendica",
|
||||
"icons": [{
|
||||
"src": "{{$baseurl}}/{{$touch_icon}}"
|
||||
"src": "{{$baseurl}}/{{$touch_icon}}",
|
||||
"sizes": "128x128",
|
||||
"type": "image/png"
|
||||
}]
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue