diff options
author | zotlabs <mike@macgirvin.com> | 2017-10-05 16:59:33 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-10-05 16:59:33 -0700 |
commit | a0eb62852606ef0362d3ed07e4bd50aeb5b6f73c (patch) | |
tree | 603ec81d2244d9ff099dffa94a6af57c6a2e73e0 /include/nav.php | |
parent | 4ab21edba8511eb96b08371424841d6ffb808cf8 (diff) | |
download | volse-hubzilla-a0eb62852606ef0362d3ed07e4bd50aeb5b6f73c.tar.gz volse-hubzilla-a0eb62852606ef0362d3ed07e4bd50aeb5b6f73c.tar.bz2 volse-hubzilla-a0eb62852606ef0362d3ed07e4bd50aeb5b6f73c.zip |
Experimental alternate channel_menu navigation. To use, "util/config system.channel_menu 1"
Diffstat (limited to 'include/nav.php')
-rw-r--r-- | include/nav.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/nav.php b/include/nav.php index eccb89764..b51a03c4f 100644 --- a/include/nav.php +++ b/include/nav.php @@ -280,6 +280,8 @@ EOT; '$help' => t('@name, #tag, ?doc, content'), '$pleasewait' => t('Please wait...'), '$nav_apps' => $nav_apps, + '$channel_menu' => get_config('system','channel_menu'), + '$channel_thumb' => ((App::$profile) ? App::$profile['thumb'] : ''), '$channel_apps' => $channel_apps, '$addapps' => t('Add Apps'), '$orderapps' => t('Arrange Apps'), @@ -481,7 +483,8 @@ function channel_apps($is_owner = false, $nickname = null) { [ '$tabs' => $arr['tabs'], '$name' => App::$profile['channel_name'], - '$thumb' => App::$profile['thumb'] + '$thumb' => App::$profile['thumb'], + '$channel_menu' => get_config('system','channel_menu') ] ); } |