diff --git a/app/modules/web/Controllers/ControllerBase.php b/app/modules/web/Controllers/ControllerBase.php index 1f57ba6a..9488520c 100644 --- a/app/modules/web/Controllers/ControllerBase.php +++ b/app/modules/web/Controllers/ControllerBase.php @@ -116,10 +116,10 @@ abstract class ControllerBase { $this->view->assign('timeStart', $this->router->request()->server()->get('REQUEST_TIME_FLOAT')); $this->view->assign('queryTimeStart', microtime()); - $this->view->assign('userId', $this->userData->getId()); - $this->view->assign('userGroupId', $this->userData->getUserGroupId()); - $this->view->assign('userIsAdminApp', $this->userData->getIsAdminApp()); - $this->view->assign('userIsAdminAcc', $this->userData->getIsAdminAcc()); + $this->view->assign('ctx_userId', $this->userData->getId()); + $this->view->assign('ctx_userGroupId', $this->userData->getUserGroupId()); + $this->view->assign('ctx_userIsAdminApp', $this->userData->getIsAdminApp()); + $this->view->assign('ctx_userIsAdminAcc', $this->userData->getIsAdminAcc()); $this->view->assign('themeUri', $this->view->getTheme()->getThemeUri()); $this->view->assign('isDemo', $this->configData->isDemoEnabled()); $this->view->assign('icons', $this->theme->getIcons()); diff --git a/app/modules/web/Controllers/Helpers/LayoutHelper.php b/app/modules/web/Controllers/Helpers/LayoutHelper.php index 6500d522..cec2174b 100644 --- a/app/modules/web/Controllers/Helpers/LayoutHelper.php +++ b/app/modules/web/Controllers/Helpers/LayoutHelper.php @@ -239,11 +239,10 @@ final class LayoutHelper extends HelperBase $userType = $icons->getIconAccAdmin(); } - $this->view->assign('context_userType', $userType); - $this->view->assign('context_userId', $userData->getId()); - $this->view->assign('context_userLogin', mb_strtoupper($userData->getLogin())); - $this->view->assign('context_userName', $userData->getName() ?: mb_strtoupper($this->view->userLogin)); - $this->view->assign('context_userGroup', $userData->getUserGroupName()); + $this->view->assign('ctx_userType', $userType); + $this->view->assign('ctx_userLogin', mb_strtoupper($userData->getLogin())); + $this->view->assign('ctx_userName', $userData->getName() ?: mb_strtoupper($userData->getLogin())); + $this->view->assign('ctx_userGroup', $userData->getUserGroupName()); $this->view->assign('showPassIcon', !($this->configData->isLdapEnabled() && $userData->getIsLdap())); $this->view->assign('notifications', 0); } diff --git a/app/modules/web/themes/material-blue/views/_partials/fixed-header.inc b/app/modules/web/themes/material-blue/views/_partials/fixed-header.inc index 53273448..0dbecfde 100644 --- a/app/modules/web/themes/material-blue/views/_partials/fixed-header.inc +++ b/app/modules/web/themes/material-blue/views/_partials/fixed-header.inc @@ -56,7 +56,7 @@