From 702047de5391b968137966077103cbb6d0a24dd8 Mon Sep 17 00:00:00 2001 From: Philip Häusler Date: Mon, 22 Dec 2014 18:22:54 +0100 Subject: add more icons for better shift view --- includes/controller/shifts_controller.php | 2 +- includes/pages/user_shifts.php | 7 +++++-- includes/view/Shifts_view.php | 20 +++++++++++--------- 3 files changed, 17 insertions(+), 12 deletions(-) (limited to 'includes') diff --git a/includes/controller/shifts_controller.php b/includes/controller/shifts_controller.php index 041f21e2..126678a7 100644 --- a/includes/controller/shifts_controller.php +++ b/includes/controller/shifts_controller.php @@ -45,7 +45,7 @@ function shift_controller() { return [ $shift['name'], - Shift_view($shift, $shifttype, $room, in_array('admin_shifts', $privileges), $angeltypes, in_array('user_shifts_admin', $privileges)) + Shift_view($shift, $shifttype, $room, in_array('admin_shifts', $privileges), $angeltypes, in_array('user_shifts_admin', $privileges), in_array('admin_rooms', $privileges), in_array('shifttypes', $privileges)) ]; } diff --git a/includes/pages/user_shifts.php b/includes/pages/user_shifts.php index 70a674fb..9ec79438 100644 --- a/includes/pages/user_shifts.php +++ b/includes/pages/user_shifts.php @@ -676,11 +676,14 @@ function view_user_shifts() { $info[] = date("Y-m-d", $shift['start']); $info[] = date("H:i", $shift['start']) . ' - ' . date("H:i", $shift['end']); if (count($_SESSION['user_shifts']['rooms']) > 1) - $info[] = $shift['room_name']; + $info[] = Room_name_render([ + 'Name' => $shift['room_name'], + 'RID' => $shift['RID'] + ]); $shift_row = array( 'info' => join('
', $info), - 'entries' => $shift['name'] + 'entries' => '' . $shift['name'] . '' . ($shift['title'] ? '
' . $shift['title'] : '') ); if (in_array('admin_shifts', $privileges)) diff --git a/includes/view/Shifts_view.php b/includes/view/Shifts_view.php index 91a553ec..594cb33c 100644 --- a/includes/view/Shifts_view.php +++ b/includes/view/Shifts_view.php @@ -1,6 +1,6 @@ %c', [ msg(), - $shift_admin ? buttons([ - button(shift_edit_link($shift), glyph('pencil') . _('edit')), - button(shift_delete_link($shift), glyph('trash') . _('delete')) + ($shift_admin || $admin_shifttypes || $admin_rooms) ? buttons([ + $shift_admin ? button(shift_edit_link($shift), glyph('pencil') . _('edit')) : '', + $shift_admin ? button(shift_delete_link($shift), glyph('trash') . _('delete')) : '', + $admin_shifttypes ? button(shifttype_link($shifttype), $shifttype['name']) : '', + $admin_rooms ? button(room_link($room), glyph('map-marker') . $room['Name']) : '' ]) : '', div('row', [ div('col-sm-3 col-xs-6', [ @@ -54,22 +56,22 @@ function Shift_view($shift, $shifttype, $room, $shift_admin, $angeltypes_source, div('col-sm-3 col-xs-6', [ '

' . _('Start') . '

', '

', - date('y-m-d', $shift['start']), + glyph('calendar') . date('y-m-d', $shift['start']), '
', - date('H:i', $shift['start']), + glyph('time') . date('H:i', $shift['start']), '

' ]), div('col-sm-3 col-xs-6', [ '

' . _('End') . '

', '

', - date('y-m-d', $shift['end']), + glyph('calendar') . date('y-m-d', $shift['end']), '
', - date('H:i', $shift['end']), + glyph('time') . date('H:i', $shift['end']), '

' ]), div('col-sm-3 col-xs-6', [ '

' . _('Location') . '

', - '

' . $room['Name'] . '

' + '

' . glyph('map-marker') . $room['Name'] . '

' ]) ]), div('row', [ -- cgit v1.2.3-70-g09d2