- Issue created by @mylocaltrades
Currently, the Webform Booking Calendar module displays the booking date, time, and seats as a single concatenated string, such as:
2025-01-26 09:30|4
This format is not user-friendly and makes it harder to read the details in the calendar pop-up.
The pop-up should display the Booking Date, Start Time, and Seats separately.
Current output (confusing)
2025-01-26 09:30|4
Proposed output (clearer)
Booking Date: Sunday, 26/01/2025
Time Slot: 09:30
Seats: 4
The current code pulls data from the webform_submission_data table as a single string. I updated the WebformBookingCalendarController.php file to:
[$datetime, $seats] = explode('|', $result->value);
$start_time = strtotime($datetime);
$formatted_date = date('l, d/m/Y', $start_time);
$details[] = 'Booking Date: ' . $formatted_date;
$details[] = 'Time Slot: ' . date('H:i', $start_time);
$details[] = 'Seats: ' . $seats;
Active
1.1
Code