Skip to content
Code-Schnipsel Gruppen Projekte
Commit cd7bdee8 erstellt von Henning Leutz's avatar Henning Leutz :martial_arts_uniform:
Dateien durchsuchen

Merge branch 'next-1.x' into '1.x'

fix: update profile bar categories logic

See merge request !68
Übergeordnete 513b4038 7da688af
No related branches found
No related tags found
1 Merge Request!68fix: update profile bar categories logic
Pipeline #16475 mit Warnungen bestanden mit Phasen
in 52 Sekunden
......@@ -32,26 +32,30 @@ function () {
$categories = utils::setUrlsToCategorySettings($categories);
// Check if "go to profile" button is added
try {
$profileBarSettings = Handler::getInstance()->getProfileBarSettings();
if (!empty($profileBarSettings['showToProfile']) && !empty($categories['user'])) {
\array_unshift($categories['user']['items'], [
'name' => 'toprofile',
'title' => QUI::getLocale()->get(
'quiqqer/frontend-users',
'profilebar.to_profile'
),
'index' => 0,
'icon' => 'fa fa-user',
'control' => false,
'showinprofilebar' => true,
'content' => false,
'url' => $ProfileSite->getUrlRewritten()
]);
$User = QUI::getUserBySession();
if (QUI::getUsers()->isUser($User) && !($User instanceof QUI\Users\Nobody)) {
try {
$profileBarSettings = Handler::getInstance()->getProfileBarSettings();
if (!empty($profileBarSettings['showToProfile']) && !empty($categories['user'])) {
\array_unshift($categories['user']['items'], [
'name' => 'toprofile',
'title' => QUI::getLocale()->get(
'quiqqer/frontend-users',
'profilebar.to_profile'
),
'index' => 0,
'icon' => 'fa fa-user',
'control' => false,
'showinprofilebar' => true,
'content' => false,
'url' => $ProfileSite->getUrlRewritten()
]);
}
} catch (\Exception $Exception) {
QUI\System\Log::writeException($Exception);
}
} catch (\Exception $Exception) {
QUI\System\Log::writeException($Exception);
}
return $categories;
......
0% oder .
You are about to add 0 people to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Bitte registrieren oder zum Kommentieren