aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarijus <mario@mariovavti.com>2014-09-20 16:31:56 +0200
committermarijus <mario@mariovavti.com>2014-09-20 16:31:56 +0200
commitbd54358aa6bfe90bfbc8aed7baf3a8110d6e45ba (patch)
tree54d5f45f497c5ff3cfd48c316aa3df9a0da60e50
parent9feb619bea39824823ce39ca203b92fb6b68e6fb (diff)
downloadvolse-hubzilla-bd54358aa6bfe90bfbc8aed7baf3a8110d6e45ba.tar.gz
volse-hubzilla-bd54358aa6bfe90bfbc8aed7baf3a8110d6e45ba.tar.bz2
volse-hubzilla-bd54358aa6bfe90bfbc8aed7baf3a8110d6e45ba.zip
show bookmarks menu only if we have any bookmarks already
-rw-r--r--include/conversation.php4
-rw-r--r--include/menu.php10
-rw-r--r--include/nav.php9
3 files changed, 20 insertions, 3 deletions
diff --git a/include/conversation.php b/include/conversation.php
index 05ae72d61..8f1767482 100644
--- a/include/conversation.php
+++ b/include/conversation.php
@@ -1556,7 +1556,9 @@ function profile_tabs($a, $is_owner=False, $nickname=Null){
);
}
- if($is_owner) {
+ require_once('include/menu.php');
+ $has_bookmarks = menu_list_count(local_user(),'',MENU_BOOKMARK) + menu_list_count(local_user(),'',MENU_SYSTEM|MENU_BOOKMARK);
+ if($is_owner && $has_bookmarks) {
$tabs[] = array(
'label' => t('Bookmarks'),
'url' => $a->get_baseurl() . '/bookmarks',
diff --git a/include/menu.php b/include/menu.php
index 4b0a11f10..8997d2e39 100644
--- a/include/menu.php
+++ b/include/menu.php
@@ -124,7 +124,17 @@ function menu_list($channel_id, $name = '', $flags = 0) {
return $r;
}
+function menu_list_count($channel_id, $name = '', $flags = 0) {
+ $sel_options = '';
+ $sel_options .= (($name) ? " and menu_name = '" . protect_sprintf(dbesc($name)) . "' " : '');
+ $sel_options .= (($flags) ? " and menu_flags = " . intval($flags) . " " : '');
+
+ $r = q("select count(*) as total from menu where menu_channel_id = %d $sel_options",
+ intval($channel_id)
+ );
+ return $r[0]['total'];
+}
function menu_edit($arr) {
diff --git a/include/nav.php b/include/nav.php
index 799faf5ce..c6bc4d293 100644
--- a/include/nav.php
+++ b/include/nav.php
@@ -110,9 +110,14 @@ EOT;
$nav['usermenu'][] = Array('chat/' . $channel['channel_address'],t('Chat'),"",t('Your chatrooms'));
}
- $nav['usermenu'][] = Array('bookmarks', t('Bookmarks'), "", t('Your bookmarks'));
+ require_once('include/menu.php');
+ $has_bookmarks = menu_list_count(local_user(),'',MENU_BOOKMARK) + menu_list_count(local_user(),'',MENU_SYSTEM|MENU_BOOKMARK);
+ if($has_bookmarks) {
+ $nav['usermenu'][] = Array('bookmarks', t('Bookmarks'), "", t('Your bookmarks'));
+ }
+
if(feature_enabled($channel['channel_id'],'webpages'))
- $nav['usermenu'][] = Array('webpages/' . $channel['channel_address'],t('Webpages'),"",t('Your webpages'));
+ $nav['usermenu'][] = Array('webpages/' . $channel['channel_address'],t('Webpages'),"",t('Your webpages'));
}
else {
if(! get_account_id())