X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fapps.php;h=85a3d9fe26cda9a87ad0dd790cdf921265f71fa6;hb=11e6b6358b6ff7c0de19b23d41b19a7cf481c757;hp=f25722df785ac6942353c74579ba5fc14a967cce;hpb=7ffd0ee41a70d30cadf18032f655222911304b7c;p=friendica.git diff --git a/mod/apps.php b/mod/apps.php index f25722df78..85a3d9fe26 100644 --- a/mod/apps.php +++ b/mod/apps.php @@ -1,25 +1,30 @@ ' . t('Applications') . ''; - - $apps = false; - - if(local_user()) { - $apps = true; - $o .= '
' . t('Private Notes') . '
'; - } - - 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, + ]); +}