Add support for members-only addons

This commit is contained in:
Thomas Willingham
2013-02-28 00:29:06 +00:00
parent e1c24377ee
commit f5d15a7ff8
5 changed files with 18 additions and 11 deletions

View File

@@ -1,7 +1,14 @@
<?php
function apps_content(&$a) {
$title = t('Applications');
$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');
if(count($a->apps)==0)
notice( t('No installed applications.') . EOL);