| 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 |
|