diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-06-01 21:52:54 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-06-01 21:52:54 +0200 |
commit | 22a9e4c9a9e4a48f644deed0432dc05a7e5b189c (patch) | |
tree | 838e862dffb990a92b613badc40d709c22102be0 /include | |
parent | 56f0244360462d96e2737ca4407feb7909c170d8 (diff) | |
download | volse-hubzilla-22a9e4c9a9e4a48f644deed0432dc05a7e5b189c.tar.gz volse-hubzilla-22a9e4c9a9e4a48f644deed0432dc05a7e5b189c.tar.bz2 volse-hubzilla-22a9e4c9a9e4a48f644deed0432dc05a7e5b189c.zip |
add manage privacy groups entry to the panel channel menu dropdown for now
Diffstat (limited to 'include')
-rw-r--r-- | include/nav.php | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/include/nav.php b/include/nav.php index 994819ed4..d83337481 100644 --- a/include/nav.php +++ b/include/nav.php @@ -91,9 +91,11 @@ function nav($template = 'default') { if(local_channel()) { if(! $_SESSION['delegate']) { - $nav['manage'] = array('manage', t('Channel Manager'), "", t('Manage Your Channels'),'manage_nav_btn'); + $nav['manage'] = array('manage', t('Manage Channels'), "", t('Manage your channels'),'manage_nav_btn'); } + $nav['group'] = array('group', t('Manage Privacy Groups'),"", t('Add and edit privacy groups'),'group_nav_btn'); + $nav['settings'] = array('settings', t('Settings'),"", t('Account/Channel Settings'),'settings_nav_btn'); @@ -182,20 +184,6 @@ function nav($template = 'default') { $nav['search'] = ['search', t('Search'), "", t('Search site @name, !forum, #tag, ?docs, content'), $search_form_action]; - - /** - * - * The following nav links are only show to logged in users - * - */ - - if(local_channel()) { - if(! $_SESSION['delegate']) { - $nav['manage'] = array('manage', t('Channel Manager'), "", t('Manage Your Channels'),'manage_nav_btn'); - } - $nav['settings'] = array('settings', t('Settings'),"", t('Account/Channel Settings'),'settings_nav_btn'); - } - /** * Admin page */ |