You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
382 B
PHTML
17 lines
382 B
PHTML
11 years ago
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Returns all shift entries in given shift for given angeltype.
|
||
|
* @param int $shift_id
|
||
|
* @param int $angeltype_id
|
||
|
*/
|
||
|
function ShiftEntries_by_shift_and_angeltype($shift_id, $angeltype_id) {
|
||
|
return sql_select("
|
||
|
SELECT *
|
||
|
FROM `ShiftEntries`
|
||
|
WHERE `SID`=" . sql_escape($shift_id) . "
|
||
|
AND `TID`=" . sql_escape($angeltype_id) . "
|
||
|
");
|
||
|
}
|
||
|
|
||
|
?>
|