aboutsummaryrefslogtreecommitdiffstats
path: root/include/nav.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2017-10-08 17:19:29 +0200
committerMario Vavti <mario@mariovavti.com>2017-10-08 17:19:29 +0200
commit991db280be4c3cbbff4fb1e4dae8f303a487ed3f (patch)
tree77b85421af0e0052f5b0ab23fc95abd51bc89728 /include/nav.php
parent71c206fdb9d8ccdd0b65feb49db93a58ea51e0e6 (diff)
downloadvolse-hubzilla-991db280be4c3cbbff4fb1e4dae8f303a487ed3f.tar.gz
volse-hubzilla-991db280be4c3cbbff4fb1e4dae8f303a487ed3f.tar.bz2
volse-hubzilla-991db280be4c3cbbff4fb1e4dae8f303a487ed3f.zip
experimental new notifications - needs pconfig experimental_notif set to 1 for your channel to work.
Diffstat (limited to 'include/nav.php')
-rw-r--r--include/nav.php14
1 files changed, 9 insertions, 5 deletions
diff --git a/include/nav.php b/include/nav.php
index 264e64f20..6b56c9aee 100644
--- a/include/nav.php
+++ b/include/nav.php
@@ -62,10 +62,12 @@ EOT;
if($banner === false)
$banner = get_config('system','sitename');
- //the notifications template is in hdr.tpl
- App::$page['header'] .= replace_macros(get_markup_template('hdr.tpl'), array(
- //we could additionally use this to display important system notifications e.g. for updates
- ));
+ if(! get_pconfig(local_channel(), 'system', 'experimental_notif')) {
+ //the notifications template is in hdr.tpl
+ App::$page['header'] .= replace_macros(get_markup_template('hdr.tpl'), array(
+ //we could additionally use this to display important system notifications e.g. for updates
+ ));
+ }
$techlevel = get_account_techlevel();
@@ -269,6 +271,7 @@ EOT;
App::$page['nav'] .= replace_macros($tpl, array(
'$baseurl' => z_root(),
+ '$experimental_notif' => get_pconfig(local_channel(), 'system', 'experimental_notif'),
'$fulldocs' => t('Help'),
'$sitelocation' => $sitelocation,
'$nav' => $x['nav'],
@@ -287,7 +290,8 @@ EOT;
'$channel_apps' => $channel_apps,
'$addapps' => t('Add Apps'),
'$orderapps' => t('Arrange Apps'),
- '$sysapps_toggle' => t('Toggle System Apps')
+ '$sysapps_toggle' => t('Toggle System Apps'),
+ '$loc' => $myident
));
if(x($_SESSION, 'reload_avatar') && $observer) {