aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2024-07-30 15:10:47 +0000
committerMario <mario@mariovavti.com>2024-07-30 15:10:47 +0000
commitd67a0b14e31aaf59991f8039596d49760be1bcb7 (patch)
tree7df5405b1e700028cff2b1c629914fece55107c9
parentb838632318b936d96e4ca8ac8b8fc6addce186a3 (diff)
downloadvolse-hubzilla-d67a0b14e31aaf59991f8039596d49760be1bcb7.tar.gz
volse-hubzilla-d67a0b14e31aaf59991f8039596d49760be1bcb7.tar.bz2
volse-hubzilla-d67a0b14e31aaf59991f8039596d49760be1bcb7.zip
fa2bi continued
-rw-r--r--include/nav.php25
1 files changed, 7 insertions, 18 deletions
diff --git a/include/nav.php b/include/nav.php
index a68d564a0..f8cd6101f 100644
--- a/include/nav.php
+++ b/include/nav.php
@@ -449,7 +449,7 @@ function channel_apps($is_owner = false, $nickname = null) {
'sel' => ((argv(0) == 'channel') ? 'active' : ''),
'title' => t('Status Messages and Posts'),
'id' => 'status-tab',
- 'icon' => 'home'
+ 'icon' => 'house'
],
];
@@ -462,7 +462,7 @@ function channel_apps($is_owner = false, $nickname = null) {
'sel' => ((argv(0) == 'profile') ? 'active' : ''),
'title' => t('Profile Details'),
'id' => 'profile-tab',
- 'icon' => 'user'
+ 'icon' => 'person'
];
}
if ($p['view_storage']) {
@@ -472,7 +472,7 @@ function channel_apps($is_owner = false, $nickname = null) {
'sel' => ((argv(0) == 'photos') ? 'active' : ''),
'title' => t('Photo Albums'),
'id' => 'photo-tab',
- 'icon' => 'photo'
+ 'icon' => 'image'
];
$tabs[] = [
'label' => t('Files'),
@@ -480,7 +480,7 @@ function channel_apps($is_owner = false, $nickname = null) {
'sel' => ((argv(0) == 'cloud' || argv(0) == 'sharedwithme') ? 'active' : ''),
'title' => t('Files and Storage'),
'id' => 'files-tab',
- 'icon' => 'folder-open'
+ 'icon' => 'folder'
];
}
@@ -491,7 +491,7 @@ function channel_apps($is_owner = false, $nickname = null) {
'sel' => ((argv(0) == 'cal') ? 'active' : ''),
'title' => t('Calendar'),
'id' => 'event-tab',
- 'icon' => 'calendar'
+ 'icon' => 'calendar-date'
];
}
@@ -505,7 +505,7 @@ function channel_apps($is_owner = false, $nickname = null) {
'sel' => ((argv(0) == 'chat') ? 'active' : ''),
'title' => t('Chatrooms'),
'id' => 'chat-tab',
- 'icon' => 'comments-o'
+ 'icon' => 'chat'
];
}
}
@@ -529,18 +529,7 @@ function channel_apps($is_owner = false, $nickname = null) {
'sel' => ((argv(0) == 'webpages') ? 'active' : ''),
'title' => t('View Webpages'),
'id' => 'webpages-tab',
- 'icon' => 'newspaper-o'
- ];
- }
-
- if ($p['view_wiki'] && Apps::system_app_installed($uid, 'Wiki')) {
- $tabs[] = [
- 'label' => t('Wikis'),
- 'url' => z_root() . '/wiki/' . $nickname,
- 'sel' => ((argv(0) == 'wiki') ? 'active' : ''),
- 'title' => t('Wiki'),
- 'id' => 'wiki-tab',
- 'icon' => 'pencil-square-o'
+ 'icon' => 'layout-text-sidebar'
];
}