]> git.mxchange.org Git - friendica.git/blobdiff - mod/apps.php
More indentions
[friendica.git] / mod / apps.php
index f25722df785ac6942353c74579ba5fc14a967cce..85a3d9fe26cda9a87ad0dd790cdf921265f71fa6 100644 (file)
@@ -1,25 +1,30 @@
 <?php
-
-
-function apps_content(&$a) {
-
-       $o .= '<h3>' . t('Applications') . '</h3>';
-
-       $apps = false;
-
-       if(local_user()) {
-               $apps = true;
-               $o .= '<div class="app-title"><a href="notes">' . t('Private Notes') . '</a></div>';
-       }
-
-       if($a->apps) {
-               $apps = true;
-               $o .= $a->apps;
+/**
+ * @file mod/apps.php
+ */
+use Friendica\App;
+use Friendica\Core\Config;
+use Friendica\Core\L10n;
+
+function apps_content(App $a)
+{
+       $privateaddons = Config::get('config', 'private_addons');
+       if ($privateaddons === "1") {
+               if (! local_user()) {
+                       info(L10n::t('You must be logged in to use addons. '));
+                       return;
+               };
        }
 
-       if(! $apps)
-               notice( t('No installed applications.') . EOL);
+       $title = L10n::t('Applications');
 
-       return $o;
+       if (count($a->apps) == 0) {
+               notice(L10n::t('No installed applications.') . EOL);
+       }
 
-}
\ No newline at end of file
+       $tpl = get_markup_template('apps.tpl');
+       return replace_macros($tpl, [
+               '$title' => $title,
+               '$apps' => $a->apps,
+       ]);
+}