2019-04-22 06:48:40 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Module;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
|
|
|
use Friendica\Core\Renderer;
|
2019-12-15 16:34:11 -05:00
|
|
|
use Friendica\DI;
|
2019-04-22 06:48:40 -04:00
|
|
|
|
|
|
|
class Manifest extends BaseModule
|
|
|
|
{
|
2019-11-05 16:48:54 -05:00
|
|
|
public static function rawContent(array $parameters = [])
|
2019-04-22 06:48:40 -04:00
|
|
|
{
|
2019-12-15 16:34:11 -05:00
|
|
|
$app = DI::app();
|
2019-04-22 06:48:40 -04:00
|
|
|
$config = $app->getConfig();
|
|
|
|
|
|
|
|
$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';
|
|
|
|
}
|
|
|
|
|
|
|
|
$output = Renderer::replaceMacros($tpl, [
|
|
|
|
'$touch_icon' => $touch_icon,
|
|
|
|
'$title' => $config->get('config', 'sitename', 'Friendica'),
|
|
|
|
]);
|
|
|
|
|
|
|
|
echo $output;
|
|
|
|
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|