#6 prepare for shift entries

This commit is contained in:
Philip Häusler 2011-07-13 15:17:15 +02:00
parent 1bb1997e04
commit 4f220e30ce
3 changed files with 88 additions and 38 deletions

View File

@ -1,49 +1,53 @@
<?php
function user_shifts() {
$shifts = sql_select("SELECT * FROM `Shifts` ORDER BY `start`");
$days = array ();
foreach ($shifts as $shift)
$days[] = date("Y-m-d", $shift['start']);
$days = array_unique($days);
if (count($days) == 0)
return "None";
$day = $days[0];
if (isset ($_REQUEST['day']))
$day = $_REQUEST['day'];
if (isset ($_REQUEST['shift_id'])) {
return template_render('../templates/user_shifts_add.html', array ());
} else {
$shifts = sql_select("SELECT * FROM `Shifts` ORDER BY `start`");
$days = array ();
foreach ($shifts as $shift)
$days[] = date("Y-m-d", $shift['start']);
$days = array_unique($days);
if (count($days) == 0)
return "None";
$day = $days[0];
if (isset ($_REQUEST['day']))
$day = $_REQUEST['day'];
$rooms = sql_select("SELECT * FROM `Room` WHERE `show`='Y' ORDER BY `Name`");
if (count($rooms) == 0)
return "None";
$id = $rooms[0]['RID'];
if (isset ($_REQUEST['room_id']) && preg_match("/^[0-9]*$/", $_REQUEST['room_id']))
$id = $_REQUEST['room_id'];
$rooms = sql_select("SELECT * FROM `Room` WHERE `show`='Y' ORDER BY `Name`");
if (count($rooms) == 0)
return "None";
$id = $rooms[0]['RID'];
if (isset ($_REQUEST['room_id']) && preg_match("/^[0-9]*$/", $_REQUEST['room_id']))
$id = $_REQUEST['room_id'];
$day_timestamp = DateTime :: createFromFormat("Y-m-d", $day)->getTimestamp();
$shifts = sql_select("SELECT * FROM `Shifts` WHERE `RID`=" . sql_escape($id) . " AND `start` >= " . sql_escape($day_timestamp) . " AND `start` < " . sql_escape($day_timestamp +24 * 60 * 60) . " ORDER BY `start`");
$day_timestamp = DateTime :: createFromFormat("Y-m-d", $day)->getTimestamp();
$shifts = sql_select("SELECT * FROM `Shifts` WHERE `RID`=" . sql_escape($id) . " AND `start` >= " . sql_escape($day_timestamp) . " AND `start` < " . sql_escape($day_timestamp +24 * 60 * 60) . " ORDER BY `start`");
$shifts_table = "";
foreach ($shifts as $shift) {
$shifts_table .= '<tr><td>' . date("H:i", $shift['start']) . ' - ' . date("H:i", $shift['end']) . '</td><td>' . $shift['name'] . '<br />';
$angeltypes = sql_select("SELECT * FROM `RoomAngelTypes` JOIN `AngelTypes` ON (`RoomAngelTypes`.`angel_type_id` = `AngelTypes`.`TID`) WHERE `room_id`=" . sql_escape($id) . " AND `count` > 0 ORDER BY `AngelTypes`.`Name`");
if (count($angeltypes)) {
foreach ($angeltypes as $angeltype) {
$shifts_table .= '<b>' . $angeltype['Name'] . ':</b> ';
$entries = sql_select("SELECT * FROM `ShiftEntry` JOIN `User` ON (`ShiftEntry`.`UID` = `User`.`UID`) WHERE `SID`=" . sql_escape($shift['SID']) . " AND `TID`=" . sql_escape($angeltype['TID']) . " ORDER BY `Nick`");
$entry_list = array ();
if ($angeltype['count'] - count($entries) > 0)
$entry_list[] = '<a href="">'.($angeltype['count'] - count($entries)) . ' missing &raquo;</a>';
$shifts_table .= join(", ", $entry_list);
$shifts_table .= '<br />';
$shifts_table = "";
foreach ($shifts as $shift) {
$shifts_table .= '<tr><td>' . date("H:i", $shift['start']) . ' - ' . date("H:i", $shift['end']) . '</td><td>' . $shift['name'] . '<br />';
$angeltypes = sql_select("SELECT * FROM `RoomAngelTypes` JOIN `AngelTypes` ON (`RoomAngelTypes`.`angel_type_id` = `AngelTypes`.`TID`) WHERE `room_id`=" . sql_escape($id) . " AND `count` > 0 ORDER BY `AngelTypes`.`Name`");
if (count($angeltypes)) {
foreach ($angeltypes as $angeltype) {
$shifts_table .= '<b>' . $angeltype['Name'] . ':</b> ';
$entries = sql_select("SELECT * FROM `ShiftEntry` JOIN `User` ON (`ShiftEntry`.`UID` = `User`.`UID`) WHERE `SID`=" . sql_escape($shift['SID']) . " AND `TID`=" . sql_escape($angeltype['TID']) . " ORDER BY `Nick`");
$entry_list = array ();
if ($angeltype['count'] - count($entries) > 0)
$entry_list[] = '<a href="' . page_link_to('user_shifts') . '&shift_id=' . $shift['SID'] . '&type_id=' . $angeltype['TID'] . '">' . ($angeltype['count'] - count($entries)) . ' missing &raquo;</a>';
$shifts_table .= join(", ", $entry_list);
$shifts_table .= '<br />';
}
}
$shifts_table .= '</td></tr>';
}
$shifts_table .= '</td></tr>';
}
return template_render('../templates/user_shifts.html', array (
'room_select' => make_room_select($rooms, $id, $day),
'day_select' => make_day_select($days, $day, $id),
'shifts_table' => $shifts_table
));
return template_render('../templates/user_shifts.html', array (
'room_select' => make_room_select($rooms, $id, $day),
'day_select' => make_day_select($days, $day, $id),
'shifts_table' => $shifts_table
));
}
}
function make_day_select($days, $day, $id) {

View File

@ -113,6 +113,7 @@ fieldset table {
}
fieldset p {
clear: both;
margin: 4px;
}

View File

@ -0,0 +1,45 @@
<form action="" method="post">
<fieldset>
<p>
<label>
Angel:
</label>
%angel%
</p>
<p>
<label>
Date/Duration:
</label>
%date%
</p>
<p>
<label>
Location:
</label>
%location%
</p>
<p>
<label>
Title:
</label>
%title%
</p>
<p>
<label>
Type:
</label>
%type%
</p>
<p>
<label>
Comment:
<br/>
(For your eyes only)
</label>
<textarea name="comment"></textarea>
</p>
<p>
<input type="submit" name="submit" value="Send" />
</p>
</fieldset>
</form>