PluginProbe
Booking Calendar / 11.5
Booking Calendar v11.5
11.8.4 11.8.3 11.8.2 11.8.1 11.8 11.7 11.6.1 11.6 11.5 11.4.3 11.4.2 11.4.1 11.4 11.3 11.2.1 11.2 11.1 11.0 10.15.7 10.15.6 10.1.3 10.10 10.10.1 10.10.2 10.11 All 204 releases
booking / includes / booking-appointment / booking-appointment.php

booking-appointment.php in Booking Calendar 11.5, at includes/booking-appointment/booking-appointment.php

25 lines 864 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * AJAX Appointment booking module bootstrap.
4 *
5 * @package Booking Calendar
6 */
7
8 if ( ! defined( 'ABSPATH' ) ) {
9 exit;
10 }
11
12 require_once __DIR__ . '/booking-appointment__config.php';
13 require_once __DIR__ . '/booking-appointment__catalog.php';
14 require_once __DIR__ . '/booking-appointment__theme.php';
15 require_once __DIR__ . '/booking-appointment__pricing.php';
16 require_once __DIR__ . '/booking-appointment__render.php';
17 require_once __DIR__ . '/booking-appointment__shortcode.php';
18 require_once __DIR__ . '/ajax/booking-appointment__resolve.php';
19 require_once __DIR__ . '/ajax/booking-appointment__validate-time.php';
20
21 // Explicitly enabled, administrator-only browser diagnostics for development sites.
22 if ( defined( 'WPBC_ENABLE_APPOINTMENT_TESTS' ) && true === WPBC_ENABLE_APPOINTMENT_TESTS ) {
23 require_once __DIR__ . '/tests/http-test-page.php';
24 }
25