friendica/mod/apps.php

26 lines
486 B
PHP
Raw Normal View History

2011-02-19 10:01:33 +01:00
<?php
use Friendica\App;
2011-02-19 10:01:33 +01:00
2017-04-30 06:01:26 +02:00
function apps_content(App $a) {
$privateaddons = get_config('config', 'private_addons');
if ($privateaddons === "1") {
if (! local_user()) {
info(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
2017-04-30 06:01:26 +02:00
$title = t('Applications');
2017-04-30 06:01:26 +02:00
if (count($a->apps) == 0) {
notice(t('No installed applications.') . EOL);
}
$tpl = get_markup_template('apps.tpl');
return replace_macros($tpl, array(
'$title' => $title,
'$apps' => $a->apps,
));
}