PluginProbe
Booking Calendar / 11.8.4
Booking Calendar v11.8.4
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_modes_v3 / booking_modes.php

booking_modes.php in Booking Calendar 11.8.4, at includes/booking_modes_v3/booking_modes.php

31 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Bootstrap the production Booking Modes V3 engine.
4 *
5 * Preflight has already verified every packaged component and all three mode
6 * declarations before this entry point is included. Shared services are then
7 * loaded only for the administration request that can use them.
8 *
9 * @package Booking Calendar
10 * @since 11.8.0
11 */
12
13 if ( ! defined( 'ABSPATH' ) ) {
14 exit;
15 }
16
17 require_once __DIR__ . '/class-wpbc-booking-modes-v3-definition-translator.php';
18 require_once __DIR__ . '/class-wpbc-booking-modes-v3-page-registry.php';
19 require_once __DIR__ . '/class-wpbc-booking-modes-v3-compatibility-registry.php';
20 require_once __DIR__ . '/class-wpbc-booking-modes-v3-context.php';
21 require_once __DIR__ . '/class-wpbc-booking-modes-v3-storage.php';
22 require_once __DIR__ . '/class-wpbc-booking-modes-v3-source-index.php';
23 require_once __DIR__ . '/class-wpbc-booking-modes-v3-compiler.php';
24 require_once __DIR__ . '/booking_modes-api.php';
25
26 if ( wpbc_booking_modes_is_navigation_boundary_enabled() ) {
27 require_once __DIR__ . '/booking_modes-navigation.php';
28 }
29
30 require_once __DIR__ . '/booking_modes-services.php';
31