diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-10-11 14:26:18 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-10-11 14:26:18 +0200 |
commit | 05c8d4819da117ce12d29cb60761da4045596d21 (patch) | |
tree | 6176ed8415cf99cf1a0d1a17fc142a7c62414d71 | |
parent | c8d5390512521f5e1c20fd01e6576d023a563501 (diff) | |
download | volse-hubzilla-05c8d4819da117ce12d29cb60761da4045596d21.tar.gz volse-hubzilla-05c8d4819da117ce12d29cb60761da4045596d21.tar.bz2 volse-hubzilla-05c8d4819da117ce12d29cb60761da4045596d21.zip |
only show pubs notifications if discovery_tab != disabled
-rw-r--r-- | Zotlabs/Widget/Notifications.php | 32 | ||||
-rw-r--r-- | view/tpl/notifications_widget.tpl | 2 |
2 files changed, 19 insertions, 15 deletions
diff --git a/Zotlabs/Widget/Notifications.php b/Zotlabs/Widget/Notifications.php index 0f82d102e..a857f1ad9 100644 --- a/Zotlabs/Widget/Notifications.php +++ b/Zotlabs/Widget/Notifications.php @@ -120,21 +120,23 @@ class Notifications { ]; } - $notifications[] = [ - 'type' => 'pubs', - 'icon' => 'globe', - 'severity' => 'secondary', - 'label' => t('Public Stream'), - 'title' => t('Public Stream Notifications'), - 'viewall' => [ - 'url' => 'pubstream', - 'label' => t('View the public stream') - ], - 'markall' => [ - 'url' => '#', - 'label' => t('Mark all notifications seen') - ] - ]; + if(get_config('system', 'disable_discover_tab') != 1) { + $notifications[] = [ + 'type' => 'pubs', + 'icon' => 'globe', + 'severity' => 'secondary', + 'label' => t('Public Stream'), + 'title' => t('Public Stream Notifications'), + 'viewall' => [ + 'url' => 'pubstream', + 'label' => t('View the public stream') + ], + 'markall' => [ + 'url' => '#', + 'label' => t('Mark all notifications seen') + ] + ]; + } $o = replace_macros(get_markup_template('notifications_widget.tpl'), array( '$notifications' => $notifications, diff --git a/view/tpl/notifications_widget.tpl b/view/tpl/notifications_widget.tpl index 73cf24071..1c37fedff 100644 --- a/view/tpl/notifications_widget.tpl +++ b/view/tpl/notifications_widget.tpl @@ -26,6 +26,7 @@ } </style> +{{if $notifications}} <div id="notifications_wrapper"> <div id="notifications" class="navbar-nav" data-children=".nav-item"> <div id="nav-notifications-template" rel="template"> @@ -54,3 +55,4 @@ {{/foreach}} </div> </div> +{{/if}} |