]> git.mxchange.org Git - friendica.git/blobdiff - mod/apps.php
Add pwdreset_time field to user table
[friendica.git] / mod / apps.php
index f25722df785ac6942353c74579ba5fc14a967cce..a220afff1cadcad109d520239030bea47c33e7e2 100644 (file)
@@ -1,25 +1,26 @@
 <?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>';
+use Friendica\App;
+use Friendica\Core\Config;
+
+function apps_content(App $a) {
+       $privateaddons = Config::get('config', 'private_addons');
+       if ($privateaddons === "1") {
+               if (! local_user()) {
+                       info(t('You must be logged in to use addons. '));
+                       return;
+               };
        }
 
-       if($a->apps) {
-               $apps = true;
-               $o .= $a->apps;
-       }
-
-       if(! $apps)
-               notice( t('No installed applications.') . EOL);
+       $title = t('Applications');
 
-       return $o;
+       if (count($a->apps) == 0) {
+               notice(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,
+       ]);
+}