PluginProbe ʕ •ᴥ•ʔ
LatePoint – Calendar Booking Plugin for Appointments and Events / 5.2.11
LatePoint – Calendar Booking Plugin for Appointments and Events v5.2.11
5.6.6 5.6.5 5.6.4 5.6.3 5.6.2 5.6.1 5.6.0 5.5.2 5.5.1 5.5.0 5.4.2 trunk 5.1.0 5.1.1 5.1.2 5.1.3 5.1.4 5.1.5 5.1.6 5.1.7 5.1.8 5.1.9 5.1.91 5.1.92 5.1.93 5.1.94 5.2.0 5.2.1 5.2.10 5.2.11 5.2.2 5.2.3 5.2.4 5.2.5 5.2.6 5.2.7 5.2.8 5.2.9 5.3.0 5.3.1 5.3.2 5.4.0 5.4.1
latepoint / lib / views / bookings / _full_summary.php
latepoint / lib / views / bookings Last commit date
_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>