friendica/mod/apps.php

26 lines
474 B
PHP
Raw Normal View History

2011-02-19 10:01:33 +01:00
<?php
function apps_content(&$a) {
2013-03-03 00:46:54 +01:00
$privateaddons = get_config('config','private_addons');
if ($privateaddons === "1") {
if((! (local_user()))) {
info( t("You must be logged in to use addons. "));
return;};
}
$title = t('Applications');
2011-02-19 10:01:33 +01:00
if(count($a->apps)==0)
notice( t('No installed applications.') . EOL);
2011-02-19 10:01:33 +01:00
$tpl = get_markup_template("apps.tpl");
return replace_macros($tpl, array(
'$title' => $title,
'$apps' => $a->apps,
));
}