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