]> git.mxchange.org Git - friendica.git/blobdiff - mod/apps.php
Update database.sql
[friendica.git] / mod / apps.php
index 58752de32231fbaf90b76ae3d84c2f9e16d2ed37..d497ce93a2812c6695dbc160bd491c8734562c65 100644 (file)
@@ -1,15 +1,33 @@
 <?php
+/**
+ * @file mod/apps.php
+ */
+use Friendica\Content\Nav;
+use Friendica\Core\Config;
+use Friendica\Core\L10n;
+use Friendica\Core\Renderer;
 
+function apps_content()
+{
+       $privateaddons = Config::get('config', 'private_addons');
+       if ($privateaddons === "1") {
+               if (! local_user()) {
+                       info(L10n::t('You must be logged in to use addons. '));
+                       return;
+               };
+       }
 
-function apps_content(&$a) {
+       $title = L10n::t('Applications');
 
-       $o .= '<h3>' . t('Applications') . '</h3>';
+       $apps = Nav::getAppMenu();
 
-       $o .= '<div class="app-title"><a href="notes">' . t('Private Notes') . '</a></div>';
+       if (count($apps) == 0) {
+               notice(L10n::t('No installed applications.') . EOL);
+       }
 
-       if($a->apps)
-               $o .= $a->apps;
-
-       return $o;
-
-}
\ No newline at end of file
+       $tpl = Renderer::getMarkupTemplate('apps.tpl');
+       return Renderer::replaceMacros($tpl, [
+               '$title' => $title,
+               '$apps'  => $apps,
+       ]);
+}