From 05410ba89afa6ed6dd669528e25c578480e3a67f Mon Sep 17 00:00:00 2001 From: Philip Häusler Date: Tue, 19 Jul 2011 19:12:36 +0200 Subject: #6 my shifts | cancel my shifts --- includes/pages/user_myshifts.php | 47 ++++++++++++++++++++++++++++++++++++++-- includes/pages/user_shifts.php | 7 +++--- public/css/base.css | 4 ++++ templates/user_myshifts.html | 37 +++++++++++++++++++++++++++++++ 4 files changed, 89 insertions(+), 6 deletions(-) create mode 100644 templates/user_myshifts.html diff --git a/includes/pages/user_myshifts.php b/includes/pages/user_myshifts.php index 669d927c..88d78254 100644 --- a/includes/pages/user_myshifts.php +++ b/includes/pages/user_myshifts.php @@ -1,7 +1,50 @@ 0) { + $shift = $shift[0]; + if (($shift['start'] - time() < $LETZTES_AUSTRAGEN * 60) || in_array('user_shifts_admin', $privileges)) { + sql_query("DELETE FROM `ShiftEntry` WHERE `id`=" . sql_escape($id) . " LIMIT 1"); + $msg = success("Your shift has been canceled successfully."); + } else + $msg = error("It's too late to cancel this shift.'"); + } else + header("Location: " . page_link_to('user_myshifts')); + } + $shifts = sql_select("SELECT * FROM `ShiftEntry` JOIN `Shifts` ON (`ShiftEntry`.`SID` = `Shifts`.`SID`) JOIN `Room` ON (`Shifts`.`RID` = `Room`.`RID`) WHERE `UID`=" . sql_escape($user['UID'])." ORDER BY `start`"); + $html = ""; + foreach ($shifts as $shift) { + if (time() > $shift['end']) + $html .= ''; + else + $html .= ''; + $html .= '' . date("Y-m-d", $shift['start']) . ''; + $html .= '' . date("H:i", $shift['start']) . ' - ' . date("H:i", $shift['end']) . ''; + $html .= '' . $shift['Name'] . ''; + $html .= '' . $shift['name'] . ''; + $html .= '' . $shift['Comment'] . ''; + if ($shift['start'] - time() > $LETZTES_AUSTRAGEN * 60) + $html .= 'Cancel'; + else + $html .= ''; + $html .= ''; + } + if ($html == "") + $html = 'None...Go to Shifts to sign up for a shift.'; + + return template_render('../templates/user_myshifts.html', array ( + 'h' => $LETZTES_AUSTRAGEN, + 'shifts' => $html, + 'msg' => $msg + )); +} ?> \ No newline at end of file diff --git a/includes/pages/user_shifts.php b/includes/pages/user_shifts.php index 597b652a..64fcbac5 100644 --- a/includes/pages/user_shifts.php +++ b/includes/pages/user_shifts.php @@ -44,15 +44,14 @@ function user_shifts() { } else $user_id = $user['UID']; - // TODO: Kollisionserkennung, andere Schichten zur gleichen Uhrzeit darf der Engel auch nicht belegt haben... $entries = sql_select("SELECT * FROM `ShiftEntry` WHERE `SID`=" . sql_escape($shift['SID'])); foreach ($entries as $entry) if ($entry['UID'] == $user_id) return error("This angel does already have an entry for this shift."); - $comment = strip_request_item_nl($_REQUEST['comment']); - sql_query("INSERT INTO `ShiftEntry` SET `UID`=" . sql_escape($user_id) . ", `TID`=" . sql_escape($type_id) . ", `SID`=" . sql_escape($shift_id)); + $comment = strip_request_item_nl('comment'); + sql_query("INSERT INTO `ShiftEntry` SET `Comment`='" . sql_escape($comment) . "', `UID`=" . sql_escape($user_id) . ", `TID`=" . sql_escape($type_id) . ", `SID`=" . sql_escape($shift_id)); return success("Now it's your shift. Thank you!") . 'View my shifts »'; } @@ -96,7 +95,7 @@ function user_shifts() { $shifts_table = ""; $row_count = 0; foreach ($shifts as $shift) { - $shift_row = '' . date(($id == 0 ? "Y-m-d " : "") . "H:i", $shift['start']) . ' - ' . date("H:i", $shift['end']) .($id == 0 ? "
".$shift['Name'] : ""). '' . $shift['name'] . '
'; + $shift_row = '' . date(($id == 0 ? "Y-m-d " : "") . "H:i", $shift['start']) . ' - ' . date("H:i", $shift['end']) . ($id == 0 ? "
" . $shift['Name'] : "") . '' . $shift['name'] . '
'; $show_shift = false; $angeltypes = sql_select("SELECT * FROM `RoomAngelTypes` JOIN `AngelTypes` ON (`RoomAngelTypes`.`angel_type_id` = `AngelTypes`.`TID`) WHERE `room_id`=" . sql_escape($shift['RID']) . " AND `count` > 0 ORDER BY `AngelTypes`.`Name`"); diff --git a/public/css/base.css b/public/css/base.css index c21ccf81..ab73518c 100644 --- a/public/css/base.css +++ b/public/css/base.css @@ -222,3 +222,7 @@ tr:hover .hidden { border: 1px solid #000; box-shadow: 1px 1px 5px #888; } + +.done { + text-decoration: line-through; +} diff --git a/templates/user_myshifts.html b/templates/user_myshifts.html new file mode 100644 index 00000000..750607ce --- /dev/null +++ b/templates/user_myshifts.html @@ -0,0 +1,37 @@ +

+ Hi, +
+ here are the shifts you have signed up for. +
+ Please try to arrive for your shift on time. Be punctual! +
+ Here you can remove yourself from a shift up to %h% hours before your shift is scheduled to begin. +

+%msg% + + + + + + + + + + + + + %shifts% + +
+ Day + + Time + + Location + + Name + + Comment + + Action +
-- cgit v1.2.3-54-g00ecf