engelsystem/includes/view/ShiftEntry_view.php

49 lines
1.3 KiB
PHP
Raw Normal View History

2013-11-25 22:04:32 +01:00
<?php
/**
* Display form for adding/editing a shift entry.
2017-01-02 15:43:36 +01:00
*
2013-11-25 22:04:32 +01:00
* @param string $angel
* @param string $date
* @param string $location
* @param string $title
* @param string $type
* @param string $comment
2017-01-03 03:22:48 +01:00
* @param bool $freeloaded
* @param string $freeload_comment
* @param bool $user_admin_shifts
2013-11-25 22:04:32 +01:00
* @return string
*/
2017-01-02 15:43:36 +01:00
function ShiftEntry_edit_view(
$angel,
$date,
$location,
$title,
$type,
$comment,
$freeloaded,
$freeload_comment,
$user_admin_shifts = false
) {
2017-01-02 03:57:23 +01:00
$freeload_form = [];
if ($user_admin_shifts) {
$freeload_form = [
2017-01-03 14:12:17 +01:00
form_checkbox('freeloaded', _('Freeloaded'), $freeloaded),
form_textarea('freeload_comment', _('Freeload comment (Only for shift coordination):'), $freeload_comment)
2017-01-02 15:43:36 +01:00
];
2017-01-02 03:57:23 +01:00
}
2017-01-03 14:12:17 +01:00
return page_with_title(_('Edit shift entry'), [
2017-01-02 15:43:36 +01:00
msg(),
form([
2017-01-03 14:12:17 +01:00
form_info(_('Angel:'), $angel),
form_info(_('Date, Duration:'), $date),
form_info(_('Location:'), $location),
form_info(_('Title:'), $title),
form_info(_('Type:'), $type),
form_textarea('comment', _('Comment (for your eyes only):'), $comment),
join('', $freeload_form),
form_submit('submit', _('Save'))
2017-01-02 15:43:36 +01:00
])
]);
2013-11-25 22:04:32 +01:00
}