diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-05-05 16:32:20 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-05-05 16:33:28 +0200 |
commit | 3ccefa20e8b10d0a507c6b002237664e721ca389 (patch) | |
tree | f5a171e273d5bc5d5b4d7a15e261f866889ee16f /include | |
parent | dcc8a94d07cb60b0bc814a30ccdae41a49133649 (diff) | |
download | volse-hubzilla-3ccefa20e8b10d0a507c6b002237664e721ca389.tar.gz volse-hubzilla-3ccefa20e8b10d0a507c6b002237664e721ca389.tar.bz2 volse-hubzilla-3ccefa20e8b10d0a507c6b002237664e721ca389.zip |
collapse sysapps if viewing a remote channel
Diffstat (limited to 'include')
-rw-r--r-- | include/nav.php | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/include/nav.php b/include/nav.php index fecf28548..849e19d9a 100644 --- a/include/nav.php +++ b/include/nav.php @@ -43,7 +43,7 @@ EOT; require_once('include/conversation.php'); $is_owner = (((local_channel()) && (App::$profile['profile_uid'] == local_channel())) ? true : false); - $navapps[] = channel_apps($is_owner, App::$profile['channel_address']); + $channel_apps[] = channel_apps($is_owner, App::$profile['channel_address']); $myident = (($channel) ? $channel['xchan_addr'] : ''); @@ -258,7 +258,7 @@ EOT; usort($syslist,'Zotlabs\\Lib\\Apps::app_name_compare'); foreach($syslist as $app) { - $navapps[] = Zlib\Apps::app_render($app,'nav'); + $nav_apps[] = Zlib\Apps::app_render($app,'nav'); } $tpl = get_markup_template('nav.tpl'); @@ -276,8 +276,10 @@ EOT; '$powered_by' => $powered_by, '$help' => t('@name, #tag, ?doc, content'), '$pleasewait' => t('Please wait...'), - '$navapps' => $navapps, - '$addapps' => t('Add Apps') + '$nav_apps' => $nav_apps, + '$channel_apps' => $channel_apps, + '$addapps' => t('Add Apps'), + '$sysapps_toggle' => t('Toggle System Apps') )); if(x($_SESSION, 'reload_avatar') && $observer) { @@ -480,4 +482,4 @@ function channel_apps($is_owner = false, $nickname = null) { '$thumb' => App::$profile['thumb'] ] ); -}
\ No newline at end of file +} |