X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fapps.php;h=d497ce93a2812c6695dbc160bd491c8734562c65;hb=e9b05bd13f1bf3f74c63202f6f9f9fa2f65f19f1;hp=4d6395e4ea64673f33ad3fd0517a15191d924393;hpb=c0df692f5fc4eaadb322614069b2c7ed40453fa1;p=friendica.git diff --git a/mod/apps.php b/mod/apps.php index 4d6395e4ea..d497ce93a2 100644 --- a/mod/apps.php +++ b/mod/apps.php @@ -1,25 +1,33 @@ apps)==0) - notice( t('No installed applications.') . EOL); + $apps = Nav::getAppMenu(); + if (count($apps) == 0) { + notice(L10n::t('No installed applications.') . EOL); + } - $tpl = get_markup_template("apps.tpl"); - return replace_macros($tpl, array( + $tpl = Renderer::getMarkupTemplate('apps.tpl'); + return Renderer::replaceMacros($tpl, [ '$title' => $title, - '$apps' => $a->apps, - )); - - - + '$apps' => $apps, + ]); }