change popover sybol based on message
This commit is contained in:
parent
69878fa458
commit
6ade63f11d
|
@ -33,6 +33,7 @@ function header_toolbar() {
|
|||
$hints = [];
|
||||
if (isset($user)) {
|
||||
$hint_class = 'info';
|
||||
$glyphicon = 'info-sign';
|
||||
// Erzengel Hinweis für unbeantwortete Fragen
|
||||
if ($p != "admin_questions") {
|
||||
$new_questions = admin_new_questions();
|
||||
|
@ -47,26 +48,30 @@ function header_toolbar() {
|
|||
if (User_is_freeloader($user)) {
|
||||
$hints[] = error(sprintf(_("You freeloaded at least %s shifts. Shift signup is locked. Please go to heavens desk to be unlocked again."), $max_freeloadable_shifts), true);
|
||||
$hint_class = 'danger';
|
||||
$glyphicon = 'warning-sign';
|
||||
}
|
||||
|
||||
// Hinweis für Engel, die noch nicht angekommen sind
|
||||
if ($user['Gekommen'] == 0) {
|
||||
$hints[] = error(_("You are not marked as arrived. Please go to heaven's desk, get your angel badge and/or tell them that you arrived already."), true);
|
||||
$hint_class = 'danger';
|
||||
$glyphicon = 'warning-sign';
|
||||
}
|
||||
|
||||
if ($enable_tshirt_size && $user['Size'] == "") {
|
||||
$hints[] = error(_("You need to specify a tshirt size in your settings!"), true);
|
||||
$hint_class = 'danger';
|
||||
$glyphicon = 'warning-sign';
|
||||
}
|
||||
|
||||
if ($user['DECT'] == "") {
|
||||
$hints[] = error(_("You need to specify a DECT phone number in your settings! If you don't have a DECT phone, just enter \"-\"."), true);
|
||||
$hint_class = 'danger';
|
||||
$glyphicon = 'warning-sign';
|
||||
}
|
||||
}
|
||||
if (count($hints) > 0)
|
||||
$toolbar_items[] = toolbar_popover('warning-sign text-' . $hint_class, '', $hints, 'bg-' . $hint_class);
|
||||
$toolbar_items[] = toolbar_popover($glyphicon . ' text-' . $hint_class, '', $hints, 'bg-' . $hint_class);
|
||||
|
||||
$user_submenu = make_langselect();
|
||||
$user_submenu[] = toolbar_item_divider();
|
||||
|
|
Loading…
Reference in New Issue