2017-04-13 02:24:27 +02:00
|
|
|
<?php
|
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2017-04-30 06:01:26 +02:00
|
|
|
use Friendica\Core\Config;
|
2017-04-13 02:24:27 +02:00
|
|
|
|
2017-04-30 06:01:26 +02:00
|
|
|
function manifest_content(App $a) {
|
2017-04-13 02:24:27 +02:00
|
|
|
|
2017-04-30 06:01:26 +02:00
|
|
|
$tpl = get_markup_template('manifest.tpl');
|
2017-04-13 02:24:27 +02:00
|
|
|
|
2017-04-30 06:01:26 +02:00
|
|
|
header('Content-type: application/manifest+json');
|
2017-04-13 02:24:27 +02:00
|
|
|
|
2017-04-30 06:01:26 +02:00
|
|
|
$touch_icon = Config::get('system', 'touch_icon', 'images/friendica-128.png');
|
|
|
|
if ($touch_icon == '') {
|
|
|
|
$touch_icon = 'images/friendica-128.png';
|
|
|
|
}
|
2017-04-13 02:24:27 +02:00
|
|
|
|
2017-04-30 06:01:26 +02:00
|
|
|
$o = replace_macros($tpl, array(
|
|
|
|
'$baseurl' => App::get_baseurl(),
|
|
|
|
'$touch_icon' => $touch_icon,
|
|
|
|
'$title' => Config::get('config', 'sitename', 'Friendica'),
|
|
|
|
));
|
2017-04-13 02:24:27 +02:00
|
|
|
|
2017-04-30 06:01:26 +02:00
|
|
|
echo $o;
|
2017-04-13 02:24:27 +02:00
|
|
|
|
2017-04-30 06:01:26 +02:00
|
|
|
killme();
|
|
|
|
}
|