|
@@ -25,7 +25,7 @@ discard block |
|
|
block discarded – undo |
|
25
|
25
|
<?php if (\App::$Debug): ?> |
|
26
|
26
|
<?= \App::$Debug->renderHead() ?> |
|
27
|
27
|
<?php endif; ?> |
|
28
|
|
- <?php if (!isset($fullgrid)){ $fullgrid = false; } ?> |
|
|
28
|
+ <?php if (!isset($fullgrid)) { $fullgrid = false; } ?> |
|
29
|
29
|
</head> |
|
30
|
30
|
<body class="bg-light"> |
|
31
|
31
|
|
|
@@ -39,11 +39,11 @@ discard block |
|
|
block discarded – undo |
|
39
|
39
|
|
|
40
|
40
|
if (\App::$User->isAuth()) { |
|
41
|
41
|
$userId = \App::$User->identity()->getId(); |
|
42
|
|
- $navbar->menu('right', ['text' => __('Account') . ' <span class="badge" id="summary-count-block">0</span>', 'dropdown' => [ |
|
|
42
|
+ $navbar->menu('right', ['text' => __('Account').' <span class="badge" id="summary-count-block">0</span>', 'dropdown' => [ |
|
43
|
43
|
['text' => __('My profile'), 'link' => ['profile/show', [$userId]]], |
|
44
|
|
- ['text' => __('Messages') . ' <span class="badge" id="pm-count-block">0</span>', 'link' => ['profile/messages'], 'class' => 'dropdown-item', 'html' => true], |
|
|
44
|
+ ['text' => __('Messages').' <span class="badge" id="pm-count-block">0</span>', 'link' => ['profile/messages'], 'class' => 'dropdown-item', 'html' => true], |
|
45
|
45
|
['text' => __('Feed'), 'link' => ['profile/feed'], 'class' => 'dropdown-item'], |
|
46
|
|
- ['text' => __('Notifications') . ' <span class="badge" id="notify-count-block">0</span>', 'link' => ['profile/notifications'], 'class' => 'dropdown-item', 'html' => true], |
|
|
46
|
+ ['text' => __('Notifications').' <span class="badge" id="notify-count-block">0</span>', 'link' => ['profile/notifications'], 'class' => 'dropdown-item', 'html' => true], |
|
47
|
47
|
['text' => __('Settings'), 'link' => ['profile/settings'], 'class' => 'dropdown-item'], |
|
48
|
48
|
], 'properties' => ['html' => true]]); |
|
49
|
49
|
$navbar->menu('right', ['text' => __('Logout'), 'link' => ['user/logout']]); |