summaryrefslogtreecommitdiff
path: root/includes/sys_menu.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/sys_menu.php')
-rw-r--r--includes/sys_menu.php31
1 files changed, 30 insertions, 1 deletions
diff --git a/includes/sys_menu.php b/includes/sys_menu.php
index f7a5ba3b..2a6da701 100644
--- a/includes/sys_menu.php
+++ b/includes/sys_menu.php
@@ -14,7 +14,7 @@ function page_link_to_absolute($page) {
* Renders the header toolbar containing search, login/logout, user and settings links.
*/
function header_toolbar() {
- global $p, $privileges, $user;
+ global $p, $privileges, $user, $enable_tshirt_size;
$toolbar_items = array();
@@ -30,6 +30,35 @@ function header_toolbar() {
if(isset($user) && in_array('user_messages', $privileges))
$toolbar_items[] = toolbar_item_link(page_link_to('user_messages'), 'envelope', user_unread_messages());
+ $hints = [];
+ if (isset($user)) {
+ 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);
+
+ // 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);
+
+ if ($enable_tshirt_size && $user['Size'] == "")
+ $hints[] = error(_("You need to specify a tshirt size in your settings!"), true);
+
+ 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);
+
+ // Erzengel Hinweis für unbeantwortete Fragen
+ if ($p != "admin_questions") {
+ $new_questions = admin_new_questions();
+ if($new_questions != "")
+ $hints[] = $new_questions;
+ }
+
+ $unconfirmed_hint = user_angeltypes_unconfirmed_hint();
+ if($unconfirmed_hint != '')
+ $hints[] = $unconfirmed_hint;
+ }
+ if(count($hints) > 0)
+ $toolbar_items[] = toolbar_popover('warning-sign text-danger', '', $hints, 'bg-danger');
+
$user_submenu = make_langselect();
$user_submenu[] = toolbar_item_divider();
if (in_array('user_myshifts', $privileges))