From 514d2aca641f2c6fd9262e575153824e2cf977f1 Mon Sep 17 00:00:00 2001 From: Philip Häusler Date: Sun, 7 Dec 2014 16:54:00 +0100 Subject: add function to list users subscribed to a shift --- includes/model/ShiftEntry_model.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'includes') diff --git a/includes/model/ShiftEntry_model.php b/includes/model/ShiftEntry_model.php index 72c1d6d2..20d0946f 100644 --- a/includes/model/ShiftEntry_model.php +++ b/includes/model/ShiftEntry_model.php @@ -7,9 +7,18 @@ function ShiftEntries_freeleaded_count() { return sql_select_single_cell("SELECT COUNT(*) FROM `ShiftEntry` WHERE `freeloaded` = 1"); } +function ShiftEntries_by_shift($shift_id) { + return sql_select(" + SELECT `User`.`email`, `User`.`email_shiftinfo`, `User`.`Sprache`, `ShiftEntry`.`UID`, `ShiftEntry`.`TID`, `ShiftEntry`.`SID`, `AngelTypes`.`name` as `angel_type_name`, `ShiftEntry`.`Comment`, `ShiftEntry`.`freeloaded` + FROM `ShiftEntry` + JOIN `User` ON `ShiftEntry`.`UID`=`User`.`UID` + JOIN `AngelTypes` ON `ShiftEntry`.`TID`=`AngelTypes`.`id` + WHERE `ShiftEntry`.`SID`=" . sql_escape($shift_id)); +} + /** * Create a new shift entry. - * + * * @param ShiftEntry $shift_entry */ function ShiftEntry_create($shift_entry) { -- cgit v1.2.3-54-g00ecf