Review updates

This commit is contained in:
Adam Magness 2018-01-15 17:42:12 -05:00
parent bb08f87bba
commit 246e673659

View file

@ -45,16 +45,16 @@ class Nav
$tpl = get_markup_template('nav.tpl'); $tpl = get_markup_template('nav.tpl');
$a->page['nav'] .= replace_macros($tpl, [ $a->page['nav'] .= replace_macros($tpl, [
'$baseurl' => System::baseUrl(), '$baseurl' => System::baseUrl(),
'$sitelocation' => $nav_info['sitelocation'], '$sitelocation' => $nav_info['sitelocation'],
'$nav' => $nav_info['nav'], '$nav' => $nav_info['nav'],
'$banner' => $nav_info['banner'], '$banner' => $nav_info['banner'],
'$emptynotifications' => t('Nothing new here'), '$emptynotifications' => t('Nothing new here'),
'$userinfo' => $nav_info['userinfo'], '$userinfo' => $nav_info['userinfo'],
'$sel' => $a->nav_sel, '$sel' => $a->nav_sel,
'$apps' => $a->apps, '$apps' => $a->apps,
'$clear_notifs' => t('Clear notifications'), '$clear_notifs' => t('Clear notifications'),
'$search_hint' => t('@name, !forum, #tags, content') '$search_hint' => t('@name, !forum, #tags, content')
]); ]);
call_hooks('page_header', $a->page['nav']); call_hooks('page_header', $a->page['nav']);
@ -141,10 +141,10 @@ class Nav
$nav['search'] = ['search', t('Search'), '', t('Search site content')]; $nav['search'] = ['search', t('Search'), '', t('Search site content')];
$nav['searchoption'] = [ $nav['searchoption'] = [
t('Full Text'), t('Full Text'),
t('Tags'), t('Tags'),
t('Contacts') t('Contacts')
]; ];
if (Config::get('system', 'poco_local_search')) { if (Config::get('system', 'poco_local_search')) {
$nav['searchoption'][] = t('Forums'); $nav['searchoption'][] = t('Forums');
@ -179,12 +179,12 @@ class Nav
$nav['home'] = ['profile/' . $a->user['nickname'], t('Home'), '', t('Your posts and conversations')]; $nav['home'] = ['profile/' . $a->user['nickname'], t('Home'), '', t('Your posts and conversations')];
if (in_array($_SESSION['page_flags'], array(PAGE_NORMAL, PAGE_SOAPBOX, PAGE_FREELOVE, PAGE_PRVGROUP))) { if (in_array($_SESSION['page_flags'], [PAGE_NORMAL, PAGE_SOAPBOX, PAGE_FREELOVE, PAGE_PRVGROUP])) {
// only show friend requests for normal pages. Other page types have automatic friendship. // only show friend requests for normal pages. Other page types have automatic friendship.
if (in_array($_SESSION['page_flags'], array(PAGE_NORMAL, PAGE_SOAPBOX, PAGE_PRVGROUP))) { if (in_array($_SESSION['page_flags'], [PAGE_NORMAL, PAGE_SOAPBOX, PAGE_PRVGROUP])) {
$nav['introductions'] = array('notifications/intros', t('Introductions'), '', t('Friend Requests')); $nav['introductions'] = ['notifications/intros', t('Introductions'), '', t('Friend Requests')];
} }
if (in_array($_SESSION['page_flags'], array(PAGE_NORMAL, PAGE_SOAPBOX, PAGE_FREELOVE))) { if (in_array($_SESSION['page_flags'], [PAGE_NORMAL, PAGE_SOAPBOX, PAGE_FREELOVE])) {
$nav['notifications'] = ['notifications', t('Notifications'), '', t('Notifications')]; $nav['notifications'] = ['notifications', t('Notifications'), '', t('Notifications')];
$nav['notifications']['all'] = ['notifications/system', t('See all notifications'), '', '']; $nav['notifications']['all'] = ['notifications/system', t('See all notifications'), '', ''];
$nav['notifications']['mark'] = ['', t('Mark as seen'), '', t('Mark all system notifications seen')]; $nav['notifications']['mark'] = ['', t('Mark as seen'), '', t('Mark all system notifications seen')];