friendica/mod/apps.php

34 lines
645 B
PHP
Raw Normal View History

2011-02-19 10:01:33 +01:00
<?php
2018-01-21 19:33:59 +01:00
/**
* @file mod/apps.php
*/
use Friendica\Content\Nav;
use Friendica\Core\Config;
2018-01-21 19:33:59 +01:00
use Friendica\Core\L10n;
use Friendica\Core\Renderer;
2011-02-19 10:01:33 +01:00
function apps_content()
2018-01-21 19:33:59 +01:00
{
$privateaddons = Config::get('config', 'private_addons');
2017-04-30 06:01:26 +02:00
if ($privateaddons === "1") {
if (! local_user()) {
2018-01-21 19:33:59 +01:00
info(L10n::t('You must be logged in to use addons. '));
2017-04-30 06:01:26 +02:00
return;
};
}
2011-02-19 10:01:33 +01:00
2018-01-21 19:33:59 +01:00
$title = L10n::t('Applications');
$apps = Nav::getAppMenu();
if (count($apps) == 0) {
2018-01-21 19:33:59 +01:00
notice(L10n::t('No installed applications.') . EOL);
2017-04-30 06:01:26 +02:00
}
$tpl = get_markup_template('apps.tpl');
return Renderer::replaceMacros($tpl, [
'$title' => $title,
'$apps' => $apps,
]);
}