« ' . _('back') . ' | ' . _('apply') . ''; } } if (isset($_REQUEST['active']) && preg_match('/^[0-9]+$/', $_REQUEST['active'])) { $user_id = $_REQUEST['active']; $user_source = User($user_id); if ($user_source != null) { sql_query('UPDATE `User` SET `Aktiv`=1 WHERE `UID`=\'' . sql_escape($user_id) . '\' LIMIT 1'); engelsystem_log('User ' . User_Nick_render($user_source) . ' is active now.'); $msg = success(_('Angel has been marked as active.'), true); } else { $msg = error(_('Angel not found.'), true); } } elseif (isset($_REQUEST['not_active']) && preg_match('/^[0-9]+$/', $_REQUEST['not_active'])) { $user_id = $_REQUEST['not_active']; $user_source = User($user_id); if ($user_source != null) { sql_query("UPDATE `User` SET `Aktiv`=0 WHERE `UID`='" . sql_escape($user_id) . "' LIMIT 1"); engelsystem_log('User ' . User_Nick_render($user_source) . ' is NOT active now.'); $msg = success(_('Angel has been marked as not active.'), true); } else { $msg = error(_('Angel not found.'), true); } } elseif (isset($_REQUEST['tshirt']) && preg_match('/^[0-9]+$/', $_REQUEST['tshirt'])) { $user_id = $_REQUEST['tshirt']; $user_source = User($user_id); if ($user_source != null) { sql_query("UPDATE `User` SET `Tshirt`=1 WHERE `UID`='" . sql_escape($user_id) . "' LIMIT 1"); engelsystem_log('User ' . User_Nick_render($user_source) . ' has tshirt now.'); $msg = success(_('Angel has got a t-shirt.'), true); } else { $msg = error('Angel not found.', true); } } elseif (isset($_REQUEST['not_tshirt']) && preg_match('/^[0-9]+$/', $_REQUEST['not_tshirt'])) { $user_id = $_REQUEST['not_tshirt']; $user_source = User($user_id); if ($user_source != null) { sql_query("UPDATE `User` SET `Tshirt`=0 WHERE `UID`='" . sql_escape($user_id) . "' LIMIT 1"); engelsystem_log('User ' . User_Nick_render($user_source) . ' has NO tshirt.'); $msg = success(_('Angel has got no t-shirt.'), true); } else { $msg = error(_('Angel not found.'), true); } } $users = sql_select(" SELECT `User`.*, COUNT(`ShiftEntry`.`id`) AS `shift_count`, ${shift_sum_formula} AS `shift_length` FROM `User` LEFT JOIN `ShiftEntry` ON `User`.`UID` = `ShiftEntry`.`UID` LEFT JOIN `Shifts` ON `ShiftEntry`.`SID` = `Shifts`.`SID` " . ($show_all_shifts ? "" : "AND (`Shifts`.`end` < " . time() . " OR `Shifts`.`end` IS NULL)") . " WHERE `User`.`Gekommen` = 1 GROUP BY `User`.`UID` ORDER BY `force_active` DESC, `shift_length` DESC" . $limit ); $matched_users = []; if ($search == '') { $tokens = []; } else { $tokens = explode(' ', $search); } foreach ($users as &$usr) { if (count($tokens) > 0) { $match = false; foreach ($tokens as $t) { if (stristr($usr['Nick'], trim($t))) { $match = true; break; } } if (!$match) { continue; } } $usr['nick'] = User_Nick_render($usr); $usr['shirt_size'] = $tshirt_sizes[$usr['Size']]; $usr['work_time'] = round($usr['shift_length'] / 60) . ' min (' . round($usr['shift_length'] / 3600) . ' h)'; $usr['active'] = glyph_bool($usr['Aktiv'] == 1); $usr['force_active'] = glyph_bool($usr['force_active'] == 1); $usr['tshirt'] = glyph_bool($usr['Tshirt'] == 1); $actions = []; if ($usr['Aktiv'] == 0) { $actions[] = '' . _('set active') . ''; } if ($usr['Aktiv'] == 1 && $usr['Tshirt'] == 0) { $actions[] = '' . _('remove active') . ''; $actions[] = '' . _('got t-shirt') . ''; } if ($usr['Tshirt'] == 1) { $actions[] = '' . _('remove t-shirt') . ''; } $usr['actions'] = join(' ', $actions); $matched_users[] = $usr; } $shirt_statistics = []; foreach (array_keys($tshirt_sizes) as $size) { if ($size != '') { $shirt_statistics[] = [ 'size' => $size, 'needed' => sql_select_single_cell( "SELECT count(*) FROM `User` WHERE `Size`='" . sql_escape($size) . "' AND `Gekommen`=1" ), 'given' => sql_select_single_cell( "SELECT count(*) FROM `User` WHERE `Size`='" . sql_escape($size) . "' AND `Tshirt`=1" ) ]; } } $shirt_statistics[] = [ 'size' => '' . _('Sum') . '', 'needed' => '' . User_arrived_count() . '', 'given' => '' . sql_select_single_cell('SELECT count(*) FROM `User` WHERE `Tshirt`=1') . '' ]; return page_with_title(admin_active_title(), [ form([ form_text('search', _('Search angel:'), $search), form_checkbox('show_all_shifts', _('Show all shifts'), $show_all_shifts), form_submit('submit', _('Search')) ], page_link_to('admin_active')), $set_active == '' ? form([ form_text('count', _('How much angels should be active?'), $count), form_submit('set_active', _('Preview')) ]) : $set_active, $msg . msg(), table([ 'nick' => _('Nickname'), 'shirt_size' => _('Size'), 'shift_count' => _('Shifts'), 'work_time' => _('Length'), 'active' => _('Active?'), 'force_active' => _('Forced'), 'tshirt' => _('T-shirt?'), 'actions' => '' ], $matched_users), '

' . _('Shirt statistics') . '

', table([ 'size' => _('Size'), 'needed' => _('Needed shirts'), 'given' => _('Given shirts') ], $shirt_statistics) ]); }