diff options
author | Philip Häusler <msquare@notrademark.de> | 2014-12-26 14:31:37 +0100 |
---|---|---|
committer | Philip Häusler <msquare@notrademark.de> | 2014-12-26 14:31:37 +0100 |
commit | 8764be8604f1180116dd285104de7cd547cd024f (patch) | |
tree | 61ee5e28b8cda3e4a50f309de47f6ab3793863e9 /includes | |
parent | fc4a5e0e7a6231f9d4a91edc2cfc999fb9a0b4bc (diff) |
display room per shift in shift table
Diffstat (limited to 'includes')
-rw-r--r-- | includes/pages/user_shifts.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/includes/pages/user_shifts.php b/includes/pages/user_shifts.php index f57478ed..10d06e6c 100644 --- a/includes/pages/user_shifts.php +++ b/includes/pages/user_shifts.php @@ -524,7 +524,10 @@ function view_user_shifts() { if ($colspan == 0) $colspan = 1; $todo[$rid] = array_fill(0, $maxshow, $colspan); - $shifts_table .= "<th" . (($colspan > 1) ? ' colspan="' . $colspan . '"' : '') . ">${room['name']}</th>\n"; + $shifts_table .= "<th" . (($colspan > 1) ? ' colspan="' . $colspan . '"' : '') . ">" . Room_name_render([ + 'RID' => $room['id'], + 'Name' => $room['name'] + ]) . "</th>\n"; } unset($block, $blocks, $firstblock, $colspan, $key, $room); @@ -561,7 +564,12 @@ function view_user_shifts() { // qqqqqq $is_free = false; - $shifts_row = '<a href="' . shift_link($shift) . '">' . date('d.m. H:i', $shift['start']); + + $shifts_row = Room_name_render([ + 'RID' => $room['id'], + 'Name' => $room['name'] + ]) . '<br />'; + $shifts_row .= '<a href="' . shift_link($shift) . '">' . date('d.m. H:i', $shift['start']); $shifts_row .= " – "; $shifts_row .= date('H:i', $shift['end']); $shifts_row .= "<br /><b>"; |