]> git.mxchange.org Git - friendica.git/blobdiff - mod/apps.php
Add notification clear on private message display
[friendica.git] / mod / apps.php
index a220afff1cadcad109d520239030bea47c33e7e2..d497ce93a2812c6695dbc160bd491c8734562c65 100644 (file)
@@ -1,26 +1,33 @@
 <?php
-
-use Friendica\App;
+/**
+ * @file mod/apps.php
+ */
+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") {
                if (! local_user()) {
-                       info(t('You must be logged in to use addons. '));
+                       info(L10n::t('You must be logged in to use addons. '));
                        return;
                };
        }
 
-       $title = t('Applications');
+       $title = L10n::t('Applications');
+
+       $apps = Nav::getAppMenu();
 
-       if (count($a->apps) == 0) {
-               notice(t('No installed applications.') . EOL);
+       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,
        ]);
 }