2015-12-19 23:31:08 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Edit a user's driving license information.
|
2016-11-17 14:35:04 +01:00
|
|
|
*
|
2017-01-02 15:43:36 +01:00
|
|
|
* @param User $user_source
|
2016-11-17 14:35:04 +01:00
|
|
|
* The user
|
2017-01-02 15:43:36 +01:00
|
|
|
* @param bool $wants_to_drive
|
2016-11-17 14:35:04 +01:00
|
|
|
* true, if the user wants to drive
|
|
|
|
* @param UserDriverLicense $user_driver_license
|
|
|
|
* The user driver license
|
|
|
|
* @return string
|
2015-12-19 23:31:08 +01:00
|
|
|
*/
|
2017-01-02 03:57:23 +01:00
|
|
|
function UserDriverLicense_edit_view($user_source, $wants_to_drive, $user_driver_license)
|
|
|
|
{
|
|
|
|
return page_with_title(sprintf(_("Edit %s driving license information"), User_Nick_render($user_source)), [
|
2017-01-02 15:43:36 +01:00
|
|
|
buttons([
|
|
|
|
button(user_link($user_source), _("Back to profile"), 'back')
|
|
|
|
]),
|
|
|
|
msg(),
|
|
|
|
form([
|
|
|
|
form_info(_("Privacy"), _("Your driving license information is only visible for supporters and admins.")),
|
|
|
|
form_checkbox('wants_to_drive', _("I am willing to operate cars for the PL"), $wants_to_drive),
|
|
|
|
div('panel panel-default', [
|
|
|
|
div('panel-body', [
|
|
|
|
form_checkbox(
|
|
|
|
'has_car',
|
|
|
|
_("I have my own car with me and am willing to use it for the PL (You'll get reimbursed for fuel)"),
|
|
|
|
$user_driver_license['has_car']
|
|
|
|
),
|
|
|
|
heading(_("Driver license"), 3),
|
|
|
|
form_checkbox('has_license_car', _("Car"), $user_driver_license['has_license_car']),
|
|
|
|
form_checkbox(
|
|
|
|
'has_license_3_5t_transporter',
|
|
|
|
_("Transporter 3,5t"),
|
|
|
|
$user_driver_license['has_license_3_5t_transporter']
|
|
|
|
),
|
|
|
|
form_checkbox(
|
|
|
|
'has_license_7_5t_truck',
|
|
|
|
_("Truck 7,5t"),
|
|
|
|
$user_driver_license['has_license_7_5t_truck']
|
|
|
|
),
|
|
|
|
form_checkbox(
|
|
|
|
'has_license_12_5t_truck',
|
|
|
|
_("Truck 12,5t"),
|
|
|
|
$user_driver_license['has_license_12_5t_truck']
|
|
|
|
),
|
|
|
|
form_checkbox('has_license_forklift', _("Forklift"), $user_driver_license['has_license_forklift'])
|
|
|
|
])
|
|
|
|
], 'driving_license'),
|
|
|
|
form_submit('submit', _("Save"))
|
|
|
|
]),
|
|
|
|
'<script type="text/javascript">
|
2015-12-19 23:31:08 +01:00
|
|
|
$(function() {
|
|
|
|
if($("#wants_to_drive").is(":checked"))
|
|
|
|
$("#driving_license").show();
|
|
|
|
else
|
|
|
|
$("#driving_license").hide();
|
|
|
|
|
|
|
|
$("#wants_to_drive").click(
|
|
|
|
function(e) {
|
|
|
|
if($("#wants_to_drive").is(":checked"))
|
|
|
|
$("#driving_license").show();
|
|
|
|
else
|
|
|
|
$("#driving_license").hide();
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
2017-01-02 03:57:23 +01:00
|
|
|
</script>'
|
2017-01-02 15:43:36 +01:00
|
|
|
]);
|
2015-12-19 23:31:08 +01:00
|
|
|
}
|