diff options
author | friendica <info@friendica.com> | 2014-05-21 21:47:09 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-05-21 21:47:09 -0700 |
commit | 4d7fc304ea9dd9b756aba406601739652c54f72d (patch) | |
tree | 6b92351e24190e747a9ca81ff054e3e5079e34c2 /include/apps.php | |
parent | 71a4abe293c12bed82f18a8118c7d0530009d369 (diff) | |
download | volse-hubzilla-4d7fc304ea9dd9b756aba406601739652c54f72d.tar.gz volse-hubzilla-4d7fc304ea9dd9b756aba406601739652c54f72d.tar.bz2 volse-hubzilla-4d7fc304ea9dd9b756aba406601739652c54f72d.zip |
Add the admin app
Diffstat (limited to 'include/apps.php')
-rw-r--r-- | include/apps.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/apps.php b/include/apps.php index e632ae3d6..bf5b292d0 100644 --- a/include/apps.php +++ b/include/apps.php @@ -79,6 +79,10 @@ function parse_app_description($f) { if(local_user()) unset($ret); break; + case 'admin': + if(! is_site_admin()) + unset($ret); + break; case 'local_user': if(! local_user()) unset($ret); @@ -105,6 +109,7 @@ function parse_app_description($f) { function translate_system_apps(&$arr) { $apps = array( + 'Site Admin' => t('Site Admin'), 'Bookmarks' => t('Bookmarks'), 'Address Book' => t('Address Book'), 'Login' => t('Login'), |