add possibility to show already done shifts in admin active view

This commit is contained in:
Philip Häusler 2015-08-13 20:28:48 +02:00
parent 1c9a3fa89e
commit 34be996f22
1 changed files with 26 additions and 19 deletions

View File

@ -1,22 +1,27 @@
<?php <?php
function admin_active_title() { function admin_active_title() {
return _("Active angels"); return _("Active angels");
} }
function admin_active() { function admin_active() {
global $tshirt_sizes, $shift_sum_formula; global $tshirt_sizes, $shift_sum_formula;
$msg = ""; $msg = "";
$search = ""; $search = "";
$forced_count = sql_num_query("SELECT * FROM `User` WHERE `force_active`=1"); $forced_count = sql_num_query("SELECT * FROM `User` WHERE `force_active`=1");
$count = $forced_count; $count = $forced_count;
$limit = ""; $limit = "";
$set_active = ""; $set_active = "";
if (isset($_REQUEST['search'])) if (isset($_REQUEST['search']))
$search = strip_request_item('search'); $search = strip_request_item('search');
$show_all_shifts = isset($_REQUEST['show_all_shifts']);
if (isset($_REQUEST['set_active'])) { if (isset($_REQUEST['set_active'])) {
$ok = true; $ok = true;
if (isset($_REQUEST['count']) && preg_match("/^[0-9]+$/", $_REQUEST['count'])) { if (isset($_REQUEST['count']) && preg_match("/^[0-9]+$/", $_REQUEST['count'])) {
$count = strip_request_item('count'); $count = strip_request_item('count');
if ($count < $forced_count) { if ($count < $forced_count) {
@ -27,7 +32,7 @@ function admin_active() {
$ok = false; $ok = false;
$msg .= error(_("Please enter a number of angels to be marked as active."), true); $msg .= error(_("Please enter a number of angels to be marked as active."), true);
} }
if ($ok) if ($ok)
$limit = " LIMIT " . $count; $limit = " LIMIT " . $count;
if (isset($_REQUEST['ack'])) { if (isset($_REQUEST['ack'])) {
@ -47,14 +52,14 @@ function admin_active() {
} }
sql_query("UPDATE `User` SET `Aktiv`=1 WHERE `force_active`=TRUE"); sql_query("UPDATE `User` SET `Aktiv`=1 WHERE `force_active`=TRUE");
engelsystem_log("These angels are active now: " . join(", ", $user_nicks)); engelsystem_log("These angels are active now: " . join(", ", $user_nicks));
$limit = ""; $limit = "";
$msg = success(_("Marked angels."), true); $msg = success(_("Marked angels."), true);
} else { } else {
$set_active = '<a href="' . page_link_to('admin_active') . '&amp;serach=' . $search . '">&laquo; ' . _("back") . '</a> | <a href="' . page_link_to('admin_active') . '&amp;search=' . $search . '&amp;count=' . $count . '&amp;set_active&amp;ack">' . _("apply") . '</a>'; $set_active = '<a href="' . page_link_to('admin_active') . '&amp;serach=' . $search . '">&laquo; ' . _("back") . '</a> | <a href="' . page_link_to('admin_active') . '&amp;search=' . $search . '&amp;count=' . $count . '&amp;set_active&amp;ack">' . _("apply") . '</a>';
} }
} }
if (isset($_REQUEST['active']) && preg_match("/^[0-9]+$/", $_REQUEST['active'])) { if (isset($_REQUEST['active']) && preg_match("/^[0-9]+$/", $_REQUEST['active'])) {
$id = $_REQUEST['active']; $id = $_REQUEST['active'];
$user_source = User($id); $user_source = User($id);
@ -92,15 +97,16 @@ function admin_active() {
} else } else
$msg = error(_("Angel not found."), true); $msg = error(_("Angel not found."), true);
} }
$users = sql_select(" $users = sql_select("
SELECT `User`.*, COUNT(`ShiftEntry`.`id`) as `shift_count`, ${shift_sum_formula} as `shift_length` SELECT `User`.*, COUNT(`ShiftEntry`.`id`) as `shift_count`, ${shift_sum_formula} as `shift_length`
FROM `User` LEFT JOIN `ShiftEntry` ON `User`.`UID` = `ShiftEntry`.`UID` FROM `User` LEFT JOIN `ShiftEntry` ON `User`.`UID` = `ShiftEntry`.`UID`
LEFT JOIN `Shifts` ON `ShiftEntry`.`SID` = `Shifts`.`SID` LEFT JOIN `Shifts` ON `ShiftEntry`.`SID` = `Shifts`.`SID`
WHERE `User`.`Gekommen` = 1 WHERE `User`.`Gekommen` = 1
" . ($show_all_shifts ? "" : "AND `Shifts`.`end` < " . time()) . "
GROUP BY `User`.`UID` GROUP BY `User`.`UID`
ORDER BY `force_active` DESC, `shift_length` DESC" . $limit); ORDER BY `force_active` DESC, `shift_length` DESC" . $limit);
$matched_users = array(); $matched_users = array();
if ($search == "") if ($search == "")
$tokens = array(); $tokens = array();
@ -124,7 +130,7 @@ function admin_active() {
$usr['active'] = glyph_bool($usr['Aktiv'] == 1); $usr['active'] = glyph_bool($usr['Aktiv'] == 1);
$usr['force_active'] = glyph_bool($usr['force_active'] == 1); $usr['force_active'] = glyph_bool($usr['force_active'] == 1);
$usr['tshirt'] = glyph_bool($usr['Tshirt'] == 1); $usr['tshirt'] = glyph_bool($usr['Tshirt'] == 1);
$actions = array(); $actions = array();
if ($usr['Aktiv'] == 0) if ($usr['Aktiv'] == 0)
$actions[] = '<a href="' . page_link_to('admin_active') . '&amp;active=' . $usr['UID'] . '&amp;search=' . $search . '">' . _("set active") . '</a>'; $actions[] = '<a href="' . page_link_to('admin_active') . '&amp;active=' . $usr['UID'] . '&amp;search=' . $search . '">' . _("set active") . '</a>';
@ -134,12 +140,12 @@ function admin_active() {
} }
if ($usr['Tshirt'] == 1) if ($usr['Tshirt'] == 1)
$actions[] = '<a href="' . page_link_to('admin_active') . '&amp;not_tshirt=' . $usr['UID'] . '&amp;search=' . $search . '">' . _("remove t-shirt") . '</a>'; $actions[] = '<a href="' . page_link_to('admin_active') . '&amp;not_tshirt=' . $usr['UID'] . '&amp;search=' . $search . '">' . _("remove t-shirt") . '</a>';
$usr['actions'] = join(' ', $actions); $usr['actions'] = join(' ', $actions);
$matched_users[] = $usr; $matched_users[] = $usr;
} }
$shirt_statistics = sql_select(" $shirt_statistics = sql_select("
SELECT `Size`, count(`Size`) AS `count` SELECT `Size`, count(`Size`) AS `count`
FROM `User` FROM `User`
@ -148,17 +154,18 @@ function admin_active() {
ORDER BY `count` DESC"); ORDER BY `count` DESC");
$shirt_statistics[] = array( $shirt_statistics[] = array(
'Size' => '<b>' . _("Sum") . '</b>', 'Size' => '<b>' . _("Sum") . '</b>',
'count' => '<b>' . sql_select_single_cell("SELECT count(*) FROM `User` WHERE `Tshirt`=1") . '</b>' 'count' => '<b>' . sql_select_single_cell("SELECT count(*) FROM `User` WHERE `Tshirt`=1") . '</b>'
); );
return page_with_title(admin_active_title(), array( return page_with_title(admin_active_title(), array(
form(array( form(array(
form_text('search', _("Search angel:"), $search), form_text('search', _("Search angel:"), $search),
form_submit('submit', _("Search")) form_checkbox('show_all_shifts', _("Show all shifts"), $show_all_shifts),
form_submit('submit', _("Search"))
)), )),
$set_active == "" ? form(array( $set_active == "" ? form(array(
form_text('count', _("How much angels should be active?"), $count), form_text('count', _("How much angels should be active?"), $count),
form_submit('set_active', _("Preview")) form_submit('set_active', _("Preview"))
)) : $set_active, )) : $set_active,
msg(), msg(),
table(array( table(array(
@ -169,13 +176,13 @@ function admin_active() {
'active' => _("Active?"), 'active' => _("Active?"),
'force_active' => _("Forced"), 'force_active' => _("Forced"),
'tshirt' => _("T-shirt?"), 'tshirt' => _("T-shirt?"),
'actions' => "" 'actions' => ""
), $matched_users), ), $matched_users),
'<h2>' . _("Given shirts") . '</h2>', '<h2>' . _("Given shirts") . '</h2>',
table(array( table(array(
'Size' => _("Size"), 'Size' => _("Size"),
'count' => _("Count") 'count' => _("Count")
), $shirt_statistics) ), $shirt_statistics)
)); ));
} }
?> ?>