_booking_data.php
1 year ago
_full_summary.php
1 year ago
_table_body.php
1 year ago
customize_table.php
4 months ago
grouped_bookings_quick_view.php
1 year ago
index.php
1 year ago
pending_approval.php
1 year ago
quick_availability.php
1 year ago
view_booking_log.php
1 year ago
_full_summary.php
51 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @var $booking OsBookingModel |
| 4 | */ |
| 5 | |
| 6 | if ( ! defined( 'ABSPATH' ) ) { |
| 7 | exit; // Exit if accessed directly |
| 8 | } |
| 9 | ?> |
| 10 | <div class="booking-status-info-wrapper status-<?php echo esc_attr($booking->status); ?>"> |
| 11 | <div class="booking-status-icon"></div> |
| 12 | <div class="booking-status-label"><?php echo $booking->get_nice_status(); ?></div> |
| 13 | <div class="booking-confirmation"><?php echo sprintf(esc_html__('Order #%s', 'latepoint'), '<strong>'.$booking->order->confirmation_code.'</strong>'); ?></div> |
| 14 | </div> |
| 15 | <div class="full-summary-wrapper"> |
| 16 | <?php |
| 17 | /** |
| 18 | * Order Summary - before |
| 19 | * |
| 20 | * @since 5.0.0 |
| 21 | * @hook latepoint_booking_full_summary_before |
| 22 | * |
| 23 | * @param {OsBookingModel} $booking instance of booking model |
| 24 | */ |
| 25 | do_action('latepoint_booking_full_summary_before', $booking); ?> |
| 26 | <div class="full-summary-head-info"> |
| 27 | <?php |
| 28 | /** |
| 29 | * Order Summary Head Section - before |
| 30 | * |
| 31 | * @since 5.0.0 |
| 32 | * @hook latepoint_booking_full_summary_head_info_before |
| 33 | * |
| 34 | * @param {OsBookingModel} $booking instance of booking model |
| 35 | */ |
| 36 | do_action('latepoint_booking_full_summary_head_info_before', $booking); ?> |
| 37 | <?php |
| 38 | /** |
| 39 | * Order Summary Head Section - after |
| 40 | * |
| 41 | * @since 5.0.0 |
| 42 | * @hook latepoint_booking_full_summary_head_info_after |
| 43 | * |
| 44 | * @param {OsBookingModel} $booking instance of booking model |
| 45 | */ |
| 46 | do_action('latepoint_booking_full_summary_head_info_after', $booking); ?> |
| 47 | </div> |
| 48 | <div class="full-summary-info-w"> |
| 49 | <?php include(LATEPOINT_VIEWS_ABSPATH.'steps/partials/_booking_summary.php'); ?> |
| 50 | </div> |
| 51 | </div> |