X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fapps.php;h=d497ce93a2812c6695dbc160bd491c8734562c65;hb=8db9b0987eb6b2bf6f46efcb2a523be240246bdf;hp=85a3d9fe26cda9a87ad0dd790cdf921265f71fa6;hpb=c845415a99ebc348103815a7b2c55b15c75cdd24;p=friendica.git diff --git a/mod/apps.php b/mod/apps.php index 85a3d9fe26..d497ce93a2 100644 --- a/mod/apps.php +++ b/mod/apps.php @@ -2,11 +2,12 @@ /** * @file mod/apps.php */ -use Friendica\App; +use Friendica\Content\Nav; use Friendica\Core\Config; use Friendica\Core\L10n; +use Friendica\Core\Renderer; -function apps_content(App $a) +function apps_content() { $privateaddons = Config::get('config', 'private_addons'); if ($privateaddons === "1") { @@ -18,13 +19,15 @@ function apps_content(App $a) $title = L10n::t('Applications'); - if (count($a->apps) == 0) { + $apps = Nav::getAppMenu(); + + if (count($apps) == 0) { notice(L10n::t('No installed applications.') . EOL); } - $tpl = get_markup_template('apps.tpl'); - return replace_macros($tpl, [ + $tpl = Renderer::getMarkupTemplate('apps.tpl'); + return Renderer::replaceMacros($tpl, [ '$title' => $title, - '$apps' => $a->apps, + '$apps' => $apps, ]); }