summaryrefslogtreecommitdiff
path: root/includes/model/ShiftEntry_model.php
blob: 230f69b0e427f090d8025d2f3c019c5f73970e47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?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 `ShiftEntry`
      WHERE `SID`=" . sql_escape($shift_id) . "
      AND `TID`=" . sql_escape($angeltype_id) . "
      ");
}

?>