unclutter the user menu

This commit is contained in:
Mike Macgirvin 2022-06-19 18:38:20 -07:00
parent b907250603
commit 911e6431b6
5 changed files with 14 additions and 12 deletions

View file

@ -76,6 +76,7 @@ class Apps
}
$default_apps = [
'Access Lists',
'Admin',
'Channel Home',
'Connections',
@ -83,7 +84,6 @@ class Apps
'Events',
'Files',
'Help',
'Lists',
'Photos',
'Profile Photo',
'Search',
@ -343,6 +343,7 @@ class Apps
public static function translate_system_apps(&$arr)
{
$apps = array(
'Access Lists' => t('Access Lists'),
'Admin' => t('Site Admin'),
'Apps' => t('Apps'),
'Articles' => t('Articles'),
@ -377,7 +378,6 @@ class Apps
'Help' => t('Help'),
'Invite' => t('Invite'),
'Language' => t('Language'),
'Lists' => t('Lists'),
'Login' => t('Login'),
'Mail' => t('Mail'),
'Markup' => t('Markup'),

View file

@ -109,10 +109,6 @@ class Navbar {
$nav['manage'] = array('manage', t('Channels'), "", t('Manage your channels'),'manage_nav_btn');
}
$nav['group'] = array('lists', t('Lists'),"", t('Manage your access lists'),'group_nav_btn');
$nav['settings'] = array('settings', t('Settings'),"", t('Account/Channel Settings'),'settings_nav_btn');
$nav['safe'] = array('safe', t('Safe Mode'), ((get_safemode()) ? t('(is on)') : t('(is off)')) , t('Content filtering'),'safe_nav_btn');

6
app/lists.apd Normal file
View file

@ -0,0 +1,6 @@
version: 1
url: $baseurl/lists
requires: local_channel
name: Access Lists
photo: icon:lock
categories: nav_featured_app, Personal

6
app/settings.apd Normal file
View file

@ -0,0 +1,6 @@
version: 1
url: $baseurl/settings
requires: local_channel
name: Settings
photo: icon:gear
categories: nav_featured_app, Personal

View file

@ -27,12 +27,6 @@
{{foreach $nav.usermenu as $usermenu}}
<a class="dropdown-item{{if $usermenu.2}} active{{/if}}" href="{{$usermenu.0}}" title="{{$usermenu.3}}" role="menuitem" id="{{$usermenu.4}}">{{$usermenu.1}}</a>
{{/foreach}}
{{if $nav.settings}}
<a class="dropdown-item{{if $sel.name == Settings}} active{{/if}}" href="{{$nav.settings.0}}" title="{{$nav.settings.3}}" role="menuitem" id="{{$nav.settings.4}}">{{$nav.settings.1}}</a>
{{/if}}
{{if $nav.group}}
<a class="dropdown-item" href="{{$nav.group.0}}" title="{{$nav.group.3}}" role="menuitem" id="{{$nav.group.4}}">{{$nav.group.1}}</a>
{{/if}}
{{if $nav.manage}}
<a class="dropdown-item{{if $sel.name == Manage}} active{{/if}}" href="{{$nav.manage.0}}" title="{{$nav.manage.3}}" role="menuitem" id="{{$nav.manage.4}}">{{$nav.manage.1}}</a>
{{/if}}