X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FManifest.php;h=2ae8009e251617092a9ba07420606db4901039a8;hb=af18e2f2a9ef9315e0767ee395a745f17760a460;hp=2209003090db7c0579634e99b2b382008e6ed029;hpb=68a2c4c8856904baf70cf10770c65a16134885d6;p=friendica.git diff --git a/src/Module/Manifest.php b/src/Module/Manifest.php index 2209003090..2ae8009e25 100644 --- a/src/Module/Manifest.php +++ b/src/Module/Manifest.php @@ -1,6 +1,6 @@ get('system', 'theme'); $manifest = [ - 'name' => $config->get('config', 'sitename', 'Friendica'), - 'start_url' => DI::baseUrl()->get(), - 'display' => 'standalone', - 'description' => $config->get('config', 'info', DI::l10n()->t('A Decentralized Social Network')), - 'short_name' => 'Friendica', - 'lang' => $config->get('system', 'language'), - 'dir' => 'auto', - 'categories' => ['social network', 'internet'], - 'icons' => [ + 'name' => $config->get('config', 'sitename', 'Friendica'), + 'start_url' => DI::baseUrl()->get(), + 'display' => 'standalone', + 'description' => $config->get('config', 'info', DI::l10n()->t('A Decentralized Social Network')), + 'short_name' => 'Friendica', + 'lang' => $config->get('system', 'language'), + 'dir' => 'auto', + 'categories' => ['social network', 'internet'], + 'icons' => [ [ 'src' => DI::baseUrl()->get() . '/' . $touch_icon, 'sizes' => '192x192', @@ -56,26 +56,26 @@ class Manifest extends BaseModule 'type' => 'image/png', ], ], - 'shortcuts' => [ + 'shortcuts' => [ [ - 'name' => 'Latest posts', - 'url' => '/network' + 'name' => 'Latest posts', + 'url' => '/network' ], [ - 'name' => 'Messages', - 'url' => '/message' + 'name' => 'Messages', + 'url' => '/message' ], [ - 'name' => 'Notifications', - 'url' => '/notifications/system' + 'name' => 'Notifications', + 'url' => '/notifications/system' ], [ - 'name' => 'Contacts', - 'url' => '/contact' + 'name' => 'Contacts', + 'url' => '/contact' ], [ - 'name' => 'Events', - 'url' => '/events' + 'name' => 'Events', + 'url' => '/events' ] ] ];