diff options
author | zotlabs <mike@macgirvin.com> | 2017-10-11 15:13:57 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-10-11 15:13:57 -0700 |
commit | 48d2b3afa88feefa4718803408e289af6379dffe (patch) | |
tree | 405481302fc6a7b2054c713865d67541cb32b46e /Zotlabs/Widget/Notifications.php | |
parent | f273815d8ff45a28b36bd5121c58422dfc28d0ff (diff) | |
parent | 56a675f713f3e971b1c9ccb60ab818f583dfc29e (diff) | |
download | volse-hubzilla-48d2b3afa88feefa4718803408e289af6379dffe.tar.gz volse-hubzilla-48d2b3afa88feefa4718803408e289af6379dffe.tar.bz2 volse-hubzilla-48d2b3afa88feefa4718803408e289af6379dffe.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev_merge
Diffstat (limited to 'Zotlabs/Widget/Notifications.php')
-rw-r--r-- | Zotlabs/Widget/Notifications.php | 32 |
1 files changed, 17 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, |