diff options
author | Philip Häusler <msquare@notrademark.de> | 2014-12-19 22:41:55 +0100 |
---|---|---|
committer | Philip Häusler <msquare@notrademark.de> | 2014-12-19 22:41:55 +0100 |
commit | d02272afd6725d46c37b7ba781c5d40268aa09a6 (patch) | |
tree | c7bd969a455aed4e57524df6cfaf13a766fb01c9 /includes/controller | |
parent | a791a75b0a893308f35865542149c77f8761b3a0 (diff) |
add basic shift view
Diffstat (limited to 'includes/controller')
-rw-r--r-- | includes/controller/shifts_controller.php | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/includes/controller/shifts_controller.php b/includes/controller/shifts_controller.php index 8352092d..58131d2e 100644 --- a/includes/controller/shifts_controller.php +++ b/includes/controller/shifts_controller.php @@ -1,5 +1,66 @@ <?php +function shift_link($shift) { + return page_link_to('shifts') . '&action=view&shift_id=' . $shift['SID']; +} + +function shift_delete_link($shift) { + return page_link_to('user_shifts') . '&delete_shift=' . $shift['SID']; +} + +function shift_edit_link($shift) { + return page_link_to('user_shifts') . '&edit_shift=' . $shift['SID']; +} + +function shift_controller() { + global $user, $privileges; + + if (! in_array('user_shifts', $privileges)) + redirect(page_link_to('user_shifts')); + + if (! isset($_REQUEST['shift_id'])) + redirect(page_link_to('user_shifts')); + + $shift = Shift($_REQUEST['shift_id']); + if ($shift === false) + engelsystem_error('Unable to load shift.'); + if ($shift == null) { + error(_('Shift could not be found.')); + redirect(page_link_to('user_shifts')); + } + + $shifttype = ShiftType($shift['shifttype_id']); + if ($shifttype === false || $shifttype == null) + engelsystem_error('Unable to load shift type.'); + + $room = Room($shift['RID']); + if ($room === false || $room == null) + engelsystem_error('Unable to load room.'); + + $angeltypes = AngelTypes(); + if ($angeltypes === false) + engelsystem_error('Unable to load angeltypes.'); + + User_angeltypes($user); + + return [ + $shift['name'], + Shift_view($shift, $shifttype, $room, in_array('admin_shifts', $privileges), $angeltypes, in_array('user_shifts_admin', $privileges)) + ]; +} + +function shifts_controller() { + if (! isset($_REQUEST['action'])) + redirect(page_link_to('user_shifts')); + + switch ($_REQUEST['action']) { + default: + redirect(page_link_to('?')); + case 'view': + return shift_controller(); + } +} + /** * Export all shifts using api-key. */ |