PluginProbe
Booking Calendar / 11.8.2
Booking Calendar v11.8.2
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 10.11.2 All 203 releases
← All changes | includes/wpbc-include.php +212 -16 10.15.611.8.2 View file →
@@ -23,9 +23,129 @@
23 23 // =====================================================================================================================
24 24
25 25 require_once WPBC_PLUGIN_DIR . '/core/wpbc-debug.php'; // Debug = Package: WPBC =.
26 26 require_once WPBC_PLUGIN_DIR . '/core/wpbc-core.php'; // Core.
27 +require_once WPBC_PLUGIN_DIR . '/includes/_functions/feature-flags.php'; // Release gates for functionality under development.
28 +require_once WPBC_PLUGIN_DIR . '/includes/_functions/starter-assets.php'; // Local or remote starter-image URLs.
27 29
30 +/**
31 + * Register a fail-closed diagnostic when no complete booking-mode engine exists.
32 + *
33 + * The production package contains one booking-mode engine. An incomplete V3
34 + * package must stop before registering partial navigation, services, or assets.
35 + * Translation remains inside the later notice callback so this early bootstrap
36 + * does not load the text domain prematurely.
37 + *
38 + * @param array<int,string> $errors Preflight or package-integrity errors.
39 + *
40 + * @return void
41 + */
42 +function wpbc_booking_modes_register_missing_engine_diagnostic( $errors ) {
43 + $GLOBALS['wpbc_booking_modes_missing_engine_errors'] = is_array( $errors ) ? $errors : array();
44 + add_action( 'admin_notices', 'wpbc_booking_modes_render_missing_engine_diagnostic' );
45 +}
46 +
47 +/**
48 + * Render the administrator-only missing-engine package diagnostic.
49 + *
50 + * @return void
51 + */
52 +function wpbc_booking_modes_render_missing_engine_diagnostic() {
53 + if ( ! current_user_can( 'activate_plugins' ) ) {
54 + return;
55 + }
56 +
57 + $errors = isset( $GLOBALS['wpbc_booking_modes_missing_engine_errors'] ) && is_array( $GLOBALS['wpbc_booking_modes_missing_engine_errors'] )
58 + ? $GLOBALS['wpbc_booking_modes_missing_engine_errors']
59 + : array();
60 + ?>
61 + <div class="notice notice-error">
62 + <p><strong><?php esc_html_e( 'Booking Calendar could not start a complete booking-mode engine. Restore a complete plugin package before using Booking Calendar administration pages.', 'booking' ); ?></strong></p>
63 + <?php if ( ! empty( $errors ) ) : ?>
64 + <ul>
65 + <?php foreach ( array_slice( $errors, 0, 10 ) as $error_message ) : ?>
66 + <li><?php echo esc_html( $error_message ); ?></li>
67 + <?php endforeach; ?>
68 + </ul>
69 + <?php endif; ?>
70 + </div>
71 + <?php
72 +}
73 +
74 +/**
75 + * Register a migration notice for the removed development engine selector.
76 + *
77 + * The constant is intentionally ignored after cutover. Keeping a late notice
78 + * gives administrators an actionable upgrade path without loading translations
79 + * during the early plugin bootstrap.
80 + *
81 + * @return void
82 + */
83 +function wpbc_booking_modes_register_obsolete_selector_diagnostic() {
84 + add_action( 'admin_notices', 'wpbc_booking_modes_render_obsolete_selector_diagnostic' );
85 +}
86 +
87 +/**
88 + * Render the administrator-only obsolete-selector migration notice.
89 + *
90 + * @return void
91 + */
92 +function wpbc_booking_modes_render_obsolete_selector_diagnostic() {
93 + if ( ! current_user_can( 'activate_plugins' ) ) {
94 + return;
95 + }
96 + ?>
97 + <div class="notice notice-warning is-dismissible">
98 + <p><?php esc_html_e( 'Booking Calendar V3 is now the production booking-mode engine. Remove the obsolete WPBC_BOOKING_MODE constant from your configuration.', 'booking' ); ?></p>
99 + </div>
100 + <?php
101 +}
102 +
103 +if ( defined( 'WPBC_BOOKING_MODE' ) ) {
104 + wpbc_booking_modes_register_obsolete_selector_diagnostic();
105 +}
106 +
107 +$wpbc_booking_modes_v3_preflight_file = WPBC_PLUGIN_DIR . '/includes/booking_modes_v3/preflight.php';
108 +$wpbc_booking_modes_v3_result = array(
109 + 'ready' => false,
110 + 'errors' => array(),
111 +);
112 +
113 +if ( is_readable( $wpbc_booking_modes_v3_preflight_file ) ) {
114 + require_once $wpbc_booking_modes_v3_preflight_file;
115 + $wpbc_booking_modes_v3_result = wpbc_booking_modes_v3_preflight();
116 +} else {
117 + $wpbc_booking_modes_v3_result['errors'][] = 'Missing or unreadable V3 component: preflight.php';
118 +}
119 +
120 +if ( ! empty( $wpbc_booking_modes_v3_result['ready'] ) ) {
121 + if ( ! defined( 'WPBC_BOOKING_MODES_ACTIVE_ENGINE' ) ) {
122 + define( 'WPBC_BOOKING_MODES_ACTIVE_ENGINE', 'v3' );
123 + }
124 + require_once WPBC_PLUGIN_DIR . '/includes/booking_modes_v3/booking_modes.php';
125 +} else {
126 + if ( ! defined( 'WPBC_BOOKING_MODES_ACTIVE_ENGINE' ) ) {
127 + define( 'WPBC_BOOKING_MODES_ACTIVE_ENGINE', 'none' );
128 + }
129 +
130 + $wpbc_booking_modes_missing_engine_errors = isset( $wpbc_booking_modes_v3_result['errors'] ) && is_array( $wpbc_booking_modes_v3_result['errors'] )
131 + ? $wpbc_booking_modes_v3_result['errors']
132 + : array();
133 + wpbc_booking_modes_register_missing_engine_diagnostic( $wpbc_booking_modes_missing_engine_errors );
134 +
135 + unset(
136 + $wpbc_booking_modes_v3_preflight_file,
137 + $wpbc_booking_modes_v3_result,
138 + $wpbc_booking_modes_missing_engine_errors
139 + );
140 + return;
141 +}
142 +
143 +unset(
144 + $wpbc_booking_modes_v3_preflight_file,
145 + $wpbc_booking_modes_v3_result
146 +);
147 +
28 148 require_once WPBC_PLUGIN_DIR . '/core/any/class-css-js.php'; // Abstract. Loading CSS & JS files = Package: Any =.
29 149 require_once WPBC_PLUGIN_DIR . '/core/any/class-admin-settings-api.php'; // Abstract. Settings API.
30 150
31 151 require_once WPBC_PLUGIN_DIR . '/includes/ui_settings/class-settings-page-parts.php'; // Settings Template - "Settins Parts", which used in the class-page-structure.php .
@@ -30,8 +150,9 @@
30 150
31 151 require_once WPBC_PLUGIN_DIR . '/includes/ui_settings/class-settings-page-parts.php'; // Settings Template - "Settins Parts", which used in the class-page-structure.php .
32 152 require_once WPBC_PLUGIN_DIR . '/includes/ui_settings/class-menu-structure.php'; // Abstract. Page Structure in Admin Panel // 2025-02-09.
33 153 require_once WPBC_PLUGIN_DIR . '/includes/ui_settings/class-page-structure.php'; // Abstract. Page Structure in Admin Panel // 2024-12-23.
154 +require_once WPBC_PLUGIN_DIR . '/includes/ui_settings/class-sidebar-panels.php'; // Common right sidebar panels and collapsible groups.
34 155
35 156 // -----------------------------------------------------------------------------------------------------------------
36 157 // Booking Listing templates.
37 158 // -----------------------------------------------------------------------------------------------------------------
@@ -43,8 +164,9 @@
43 164 require_once WPBC_PLUGIN_DIR . '/includes/page-bookings/booking_action/payment_request.php';
44 165 require_once WPBC_PLUGIN_DIR . '/includes/page-bookings/booking_action/change_resource.php';
45 166 require_once WPBC_PLUGIN_DIR . '/includes/page-bookings/booking_action/duplicate_booking.php';
46 167 require_once WPBC_PLUGIN_DIR . '/includes/page-bookings/booking_action/change_locale.php';
168 +require_once WPBC_PLUGIN_DIR . '/includes/page-bookings/booking_action/set_unavailable_times.php';
47 169 // Booking Listing - Filters - ...
48 170 require_once WPBC_PLUGIN_DIR . '/includes/page-bookings/listing_filters/bo_listing_toolbar.php';
49 171 require_once WPBC_PLUGIN_DIR . '/includes/page-bookings/listing_filters/sort_by.php';
50 172 require_once WPBC_PLUGIN_DIR . '/includes/page-bookings/listing_filters/expand_colapse_all.php';
@@ -75,8 +197,9 @@
75 197 // =====================================================================================================================
76 198 // Functions
77 199 // =====================================================================================================================
78 200 require_once WPBC_PLUGIN_DIR . '/includes/_functions/class-wpbc-action-scheduler-compatibility.php'; // Class to Increase Memory and Time.
201 +require_once WPBC_PLUGIN_DIR . '/includes/_functions/woocommerce-compatibility.php'; // Allow public Booking Calendar AJAX requests through WooCommerce admin-access protection.
79 202 require_once WPBC_PLUGIN_DIR . '/includes/_functions/nonce_func.php'; // Nonce functions - front-end excluding.
80 203 require_once WPBC_PLUGIN_DIR . '/includes/_functions/str_regex.php'; // String and Regex functions for shortcodes.
81 204 require_once WPBC_PLUGIN_DIR . '/includes/_functions/is_table_exist.php'; // Is DB Tables Exists.
82 205 require_once WPBC_PLUGIN_DIR . '/includes/_functions/is_dismissed.php'; // Is Dismissed.
@@ -84,10 +207,12 @@
84 207 require_once WPBC_PLUGIN_DIR . '/includes/_functions/booking_data__get.php'; // Booking details | replace / fields functions.
85 208 require_once WPBC_PLUGIN_DIR . '/includes/_functions/simple_html_tags.php'; // Simple HTML Tags - Custom Shortcodes.
86 209 require_once WPBC_PLUGIN_DIR . '/includes/_functions/admin_menu_url.php'; // Admin Menu Pages & URLs.
87 210 require_once WPBC_PLUGIN_DIR . '/includes/_functions/admin_top_bar.php'; // Admin Top Bar.
211 +require_once WPBC_PLUGIN_DIR . '/includes/_functions/admin-cost-correction.php'; // Shared Add Booking and Add Appointment exact-total control.
88 212 require_once WPBC_PLUGIN_DIR . '/includes/_functions/news_version.php'; // News, Version.
89 213 require_once WPBC_PLUGIN_DIR . '/includes/_functions/versions.php'; // Versions.
214 +require_once WPBC_PLUGIN_DIR . '/includes/_functions/booking-resources-catalog-compatibility.php'; // Temporary 11.6 Resources catalog compatibility.
90 215 require_once WPBC_PLUGIN_DIR . '/includes/_functions/sanitizing.php'; // Sanitizing.
91 216 require_once WPBC_PLUGIN_DIR . '/includes/_functions/request.php'; // Class for sanitizing $_REQUEST parameters and saving or getting it from DB // FixIn: 9.3.1.2.
92 217 require_once WPBC_PLUGIN_DIR . '/includes/_functions/city_list.php'; // City list.
93 218 require_once WPBC_PLUGIN_DIR . '/includes/save-user-meta/save-user-meta.php'; // Saving custom user data.
@@ -95,12 +220,14 @@
95 220 require_once WPBC_PLUGIN_DIR . '/includes/_functions/calendar_scripts.php'; // Calendar Scripts.
96 221
97 222 require_once WPBC_PLUGIN_DIR . '/core/wpbc_functions.php'; // Functions.
98 223 require_once WPBC_PLUGIN_DIR . '/core/wpbc_functions_dates.php'; // Function Dates New in 9.8.
224 +require_once WPBC_PLUGIN_DIR . '/includes/_front_end/class-fe-booking-context.php'; // Signed native Booking Form context for AJAX availability and booking requests.
99 225 require_once WPBC_PLUGIN_DIR . '/core/form_parser.php'; // Parser for booking form New in 9.8.
100 226 require_once WPBC_PLUGIN_DIR . '/core/wpbc-dates.php'; // Dates.
101 227 require_once WPBC_PLUGIN_DIR . '/includes/_front_end/date-hints.php'; // Front-end date hints for Free. // FixIn: 10.15.6.2.
102 228 require_once WPBC_PLUGIN_DIR . '/core/wpbc_welcome.php'; // Welcome Panel Functions.
229 +require_once WPBC_PLUGIN_DIR . '/includes/_working_time/working_time.php'; // Working Time settings and availability helpers.
103 230
104 231 // New Engine // FixIn: 9.8.0.4.
105 232 require_once WPBC_PLUGIN_DIR . '/includes/_capacity/wpbc_cache.php'; // Caching different requests to DB // FixIn: 9.8.0.4.
106 233 require_once WPBC_PLUGIN_DIR . '/includes/_capacity/booking_date_class.php'; // Functions for booking dates.
@@ -139,9 +266,14 @@
139 266 require_once WPBC_PLUGIN_DIR . '/core/lang/wpbc_all_translations5.php';
140 267 }
141 268 }
142 269
270 +require_once WPBC_PLUGIN_DIR . '/core/wpbc-frontend-messages.php'; // Visitor-facing form messages and multilingual overrides.
271 +
272 +require_once WPBC_PLUGIN_DIR . '/includes/publish/class-wpbc-booking-form-publisher.php'; // Neutral Booking Form page publishing service.
143 273 require_once WPBC_PLUGIN_DIR . '/includes/publish/wpbc-create-pages.php'; // Create pages for different purposes // FixIn: 9.6.2.10.
274 +require_once WPBC_PLUGIN_DIR . '/includes/publish/class-wpbc-booking-form-publish-ajax.php'; // Authorized AJAX publishing endpoint.
275 +require_once WPBC_PLUGIN_DIR . '/includes/publish/class-wpbc-booking-form-publish-modal.php'; // Shared native publishing modal.
144 276 require_once WPBC_PLUGIN_DIR . '/includes/publish/wpbc-publish-shortcode.php'; // Publish Booking Calendar shortcodes into the Pages // FixIn: 9.8.15.5.
145 277 require_once WPBC_PLUGIN_DIR . '/core/wpbc-emails.php'; // Emails.
146 278 // JS & CSS.
147 279 require_once WPBC_PLUGIN_DIR . '/core/wpbc-css.php'; // Load CSS.
@@ -153,8 +285,10 @@
153 285 // FixIn: 9.6.3.5 // FixIn: 8.6.1.13.
154 286 require_once WPBC_PLUGIN_DIR . '/core/timeline/flex-timeline.php'; // New. Flex. Timeline.
155 287
156 288 require_once WPBC_PLUGIN_DIR . '/core/admin/wpbc-dashboard.php'; // Dashboard Widget.
289 +require_once WPBC_PLUGIN_DIR . '/includes/page-add-booking/add_booking__component.php'; // Reusable Add Booking component.
290 +require_once WPBC_PLUGIN_DIR . '/includes/page-add-booking/add_booking__modal.php'; // Add Booking modal in Booking Listing.
157 291
158 292 // ---------------------------------------------------------------------------------------------------------------------
159 293 // Admin Pages
160 294 // ---------------------------------------------------------------------------------------------------------------------
@@ -165,8 +299,9 @@
165 299 require_once WPBC_PLUGIN_DIR . '/includes/_news/wpbc_news.php';
166 300
167 301 // UI Elements.
168 302 require_once WPBC_PLUGIN_DIR . '/includes/_toolbar_ui/flex_ui_elements.php';
303 +require_once WPBC_PLUGIN_DIR . '/includes/_toolbar_ui/chosen_filter/chosen_filter.php';
169 304 require_once WPBC_PLUGIN_DIR . '/includes/_toolbar_ui/ui__settings_panel.php';
170 305 require_once WPBC_PLUGIN_DIR . '/includes/_toolbar_ui/toolbar_ui.php';
171 306 require_once WPBC_PLUGIN_DIR . '/includes/_toolbar_ui/ui__form_steps_timeline.php'; // FixIn: 10.9.6.6.
172 307
@@ -178,21 +313,65 @@
178 313 require_once WPBC_PLUGIN_DIR . '/includes/page-bookings/bookings__actions.php';
179 314 require_once WPBC_PLUGIN_DIR . '/includes/page-bookings/bookings__listing.php';
180 315 require_once WPBC_PLUGIN_DIR . '/includes/page-bookings/bookings__page.php';
181 316
182 -// Booking > Availability page.
317 +// WP Booking Calendar > Availability > Days Availability page.
183 318 require_once WPBC_PLUGIN_DIR . '/includes/page-availability/availability__activation.php';
184 319 require_once WPBC_PLUGIN_DIR . '/includes/page-availability/availability__toolbar_ui.php';
185 320 require_once WPBC_PLUGIN_DIR . '/includes/page-availability/availability__class.php';
186 321 require_once WPBC_PLUGIN_DIR . '/includes/page-availability/availability__resource.php';
187 322 require_once WPBC_PLUGIN_DIR . '/includes/page-availability/availability__page.php';
323 +require_once WPBC_PLUGIN_DIR . '/includes/page-availability-general/availability_general__page.php';
324 +require_once WPBC_PLUGIN_DIR . '/includes/page-availability-general/ajax/availability_general__save.php';
325 +require_once WPBC_PLUGIN_DIR . '/includes/page-availability-general/ajax/availability_general__preview.php';
188 326
189 -if ( WPBC_NEW_FORM_BUILDER ) {
190 - require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/bfb-include.php'; // Booking Form Builder - @since: 11.0.0.
191 - require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/form-render/class-wpbc-bfb-form-shortcode-engine.php'; // New Shortcode Parsers and Form Render. 11.0.1.
192 - require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/form-render/bfb-form-render.php';
327 +// WP Booking Calendar > Availability > Times Availability page. // FixIn: 10.16.1.
328 +require_once WPBC_PLUGIN_DIR . '/includes/page-availability-timeslots/ajax/availability_timeslots__front.php';
329 +require_once WPBC_PLUGIN_DIR . '/includes/page-availability-timeslots/availability_timeslots__activate.php';
330 +require_once WPBC_PLUGIN_DIR . '/includes/page-availability-timeslots/ajax/availability_timeslots__save.php';
331 +require_once WPBC_PLUGIN_DIR . '/includes/page-availability-timeslots/availability_timeslots__page.php';
332 +
333 +if ( wpbc_is_11_6_features_enabled() ) {
334 + // Edition-neutral Booking Resource identity and presentation storage.
335 + require_once WPBC_PLUGIN_DIR . '/includes/booking-resources/class-wpbc-booking-resource-content-repository.php';
193 336 }
194 337
338 +// Domain-neutral template-driven catalog mechanics shared by all registered catalogs.
339 +require_once WPBC_PLUGIN_DIR . '/includes/_shared-ui-catalog/wpbc-ui-catalog.php';
340 +
341 +if ( wpbc_is_11_6_features_enabled() ) {
342 + // Independent template-driven Booking Resources catalog.
343 + require_once WPBC_PLUGIN_DIR . '/includes/page-catalog-booking-resources/booking-resources-catalog.php';
344 +}
345 +
346 +// WP Booking Calendar > Services and Appointment details.
347 +require_once WPBC_PLUGIN_DIR . '/includes/page-appointment-services/appointment_services__activate.php';
348 +require_once WPBC_PLUGIN_DIR . '/includes/page-appointment-services/appointment_services__functions.php';
349 +require_once WPBC_PLUGIN_DIR . '/includes/page-appointment-services/repository/appointment_services__repository.php';
350 +require_once WPBC_PLUGIN_DIR . '/includes/page-appointment-services/catalog/class-wpbc-appointment-services-catalog-request.php';
351 +require_once WPBC_PLUGIN_DIR . '/includes/page-appointment-services/catalog/class-wpbc-appointment-service-catalog-dto.php';
352 +require_once WPBC_PLUGIN_DIR . '/includes/page-appointment-services/catalog/class-wpbc-appointment-services-catalog-provider.php';
353 +require_once WPBC_PLUGIN_DIR . '/includes/page-appointment-services/catalog/appointment-services-catalog-config.php';
354 +require_once WPBC_PLUGIN_DIR . '/includes/page-appointment-services/catalog/appointment-services-catalog.php';
355 +require_once WPBC_PLUGIN_DIR . '/includes/page-appointment-services/class-wpbc-catalog-inline-fields.php';
356 +require_once WPBC_PLUGIN_DIR . '/includes/page-appointment-services/mutations/class-wpbc-appointment-services-catalog-editor.php';
357 +require_once WPBC_PLUGIN_DIR . '/includes/page-appointment-services/mutations/class-wpbc-appointment-services-catalog-deleter.php';
358 +require_once WPBC_PLUGIN_DIR . '/includes/page-appointment-services/appointment_services__booking.php';
359 +require_once WPBC_PLUGIN_DIR . '/includes/page-appointment-services/appointment_services__ui.php';
360 +require_once WPBC_PLUGIN_DIR . '/includes/page-appointment-services/ajax/appointment_services__list.php';
361 +require_once WPBC_PLUGIN_DIR . '/includes/page-appointment-services/ajax/appointment_services__load.php';
362 +require_once WPBC_PLUGIN_DIR . '/includes/page-appointment-services/ajax/appointment_services__save.php';
363 +require_once WPBC_PLUGIN_DIR . '/includes/page-appointment-services/ajax/appointment_services__duplicate.php';
364 +require_once WPBC_PLUGIN_DIR . '/includes/page-appointment-services/ajax/appointment_services__archive.php';
365 +require_once WPBC_PLUGIN_DIR . '/includes/page-appointment-services/ajax/appointment_services__catalog_edit.php';
366 +require_once WPBC_PLUGIN_DIR . '/includes/page-appointment-services/ajax/appointment_services__delete.php';
367 +require_once WPBC_PLUGIN_DIR . '/includes/page-appointment-services/appointment_services__page.php';
368 +
369 +require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/bfb-include.php'; // Booking Form Builder - @since: 11.0.0.
370 +require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/form-render/class-wpbc-bfb-form-shortcode-engine.php'; // New Shortcode Parsers and Form Render. 11.0.1.
371 +require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/form-render/bfb-form-render.php';
372 +
373 +
195 374 // Elementor Addons: https://developers.elementor.com/docs/getting-started/first-addon/.
196 375 require_once WPBC_PLUGIN_DIR . '/includes/elementor-booking-form/wpbc-elementor.php';
197 376
198 377 // ---------------------------------------------------------------------------------------------------------------------
@@ -198,13 +377,14 @@
198 377 // ---------------------------------------------------------------------------------------------------------------------
199 378
200 379 // FixIn: 9.6.3.5.
201 380 require_once WPBC_PLUGIN_DIR . '/core/admin/page-timeline.php'; // Timeline.
202 -require_once WPBC_PLUGIN_DIR . '/core/admin/page-new.php'; // Add New Booking page.
381 +require_once WPBC_PLUGIN_DIR . '/includes/page-add-booking/add_booking__page.php'; // Add New Booking page.
203 382
204 383 require_once WPBC_PLUGIN_DIR . '/core/admin/wpbc-settings-functions.php'; // Support functions for Booking > Settings General page.
205 384 require_once WPBC_PLUGIN_DIR . '/core/admin/page-settings.php'; // Settings page.
206 385 require_once WPBC_PLUGIN_DIR . '/core/admin/api-settings.php'; // Settings API.
386 +require_once WPBC_PLUGIN_DIR . '/includes/page-resource-capacity/page-resource-capacity.php'; // Resource Capacity Settings.
207 387
208 388
209 389 require_once WPBC_PLUGIN_DIR . '/core/admin/wpbc-gutenberg.php'; // Settings page.
210 390
@@ -209,20 +389,12 @@
209 389 require_once WPBC_PLUGIN_DIR . '/core/admin/wpbc-gutenberg.php'; // Settings page.
210 390
211 391 // ---------------------------------------------------------------------------------------------------------------------
212 392
213 -// Functions from Free form that can be use in paid versions in Wizard Setup.
214 -
215 -require_once WPBC_PLUGIN_DIR . '/includes/page-form-simple/form_templates.php'; // Booking Form Templates // FixIn: 10.6.2.1.
216 -
217 -require_once WPBC_PLUGIN_DIR . '/includes/page-form-simple/form_simple__default.php';
218 -require_once WPBC_PLUGIN_DIR . '/includes/page-form-simple/form_simple__get_data.php';
219 -
220 393 if ( file_exists( WPBC_PLUGIN_DIR . '/inc/_ps/personal.php' ) ) {
221 394 require_once WPBC_PLUGIN_DIR . '/inc/_ps/personal.php';
222 395 } else {
223 396 require_once WPBC_PLUGIN_DIR . '/includes/page-resource-free/page-resource-free.php'; // Resource page for Free version.
224 - require_once WPBC_PLUGIN_DIR . '/includes/page-form-simple/page-form-simple.php'; // Booking Form Simple.
225 397
226 398 require_once WPBC_PLUGIN_DIR . '/core/admin/page-email-new-admin.php'; // Email - New admin.
227 399 require_once WPBC_PLUGIN_DIR . '/core/admin/page-email-new-visitor.php'; // Email - New visitor.
228 400 require_once WPBC_PLUGIN_DIR . '/core/admin/page-email-deny.php'; // Email - Deny - set pending.
@@ -235,10 +407,16 @@
235 407 require_once WPBC_PLUGIN_DIR . '/core/admin/page-ics-export.php'; // Export ICS Feeds Settings page.
236 408 require_once WPBC_PLUGIN_DIR . '/core/admin/page-import-gcal.php'; // Import from Google Calendar Settings page .
237 409 }
238 410
239 -require_once WPBC_PLUGIN_DIR . '/includes/page-settings-form-options/page-settings-form-options.php'; // Booking Form Opyions Settings.
240 -require_once WPBC_PLUGIN_DIR . '/includes/page-settings-color-themes/page-settings-color-themes.php'; // Appearance / Color Themes / Skins Settings.
411 +require_once WPBC_PLUGIN_DIR . '/includes/page-settings-themes/settings_themes__page.php'; // Appearance / Theme Settings.
412 +require_once WPBC_PLUGIN_DIR . '/includes/page-settings-themes/ajax/settings_themes__save.php';
413 +require_once WPBC_PLUGIN_DIR . '/includes/page-settings-themes/ajax/settings_themes__preview.php';
414 +require_once WPBC_PLUGIN_DIR . '/includes/page-settings-calendar/settings_calendar__page.php'; // Calendar Settings.
415 +require_once WPBC_PLUGIN_DIR . '/includes/page-settings-calendar/ajax/settings_calendar__save.php';
416 +require_once WPBC_PLUGIN_DIR . '/includes/page-settings-calendar/ajax/settings_calendar__preview.php';
417 +require_once WPBC_PLUGIN_DIR . '/includes/page-settings-messages/settings_messages__page.php'; // Visitor-facing Form Messages settings.
418 +require_once WPBC_PLUGIN_DIR . '/includes/page-settings-messages/ajax/settings_messages__save.php';
241 419
242 420 // Booking > Setup page // FixIn: 10.2.0.1.
243 421 // FixIn: 9.8.0.2.
244 422 require_once WPBC_PLUGIN_DIR . '/includes/page-setup/setup__page.php';
@@ -258,12 +436,21 @@
258 436 require_once WPBC_PLUGIN_DIR . '/includes/_front_end/class-fe-inline-css-js.php';
259 437 require_once WPBC_PLUGIN_DIR . '/includes/_front_end/class-fe-render.php';
260 438 require_once WPBC_PLUGIN_DIR . '/includes/_front_end/class-fe-shortcodes.php';
261 439 require_once WPBC_PLUGIN_DIR . '/includes/_front_end/class-fe-form-source-resolver.php';
440 +require_once WPBC_PLUGIN_DIR . '/includes/_front_end/form-style-presets.php';
262 441 require_once WPBC_PLUGIN_DIR . '/includes/_front_end/hooks/class-fe-bfb-settings-hooks.php'; // Apply BFB settings to rendered booking form HTML.
263 442 require_once WPBC_PLUGIN_DIR . '/includes/_front_end/class-fe-render-form-body.php';
264 443 require_once WPBC_PLUGIN_DIR . '/includes/_custom_forms/class-custom-forms-helper.php'; // Custom forms Helpers.
265 444
445 +// Service-first, AJAX Appointment booking shortcode built on the existing resource-bound renderer.
446 +require_once WPBC_PLUGIN_DIR . '/includes/booking-appointment/booking-appointment.php';
447 +// Dedicated administrator workflow built on the same Appointment controller.
448 +require_once WPBC_PLUGIN_DIR . '/includes/page-add-appointment/add_appointment__page.php';
449 +
450 +// Resource-first public workflow with a shared frontend catalog boundary.
451 +require_once WPBC_PLUGIN_DIR . '/includes/booking-resource-selector/booking-resource-selector.php';
452 +
266 453 require_once WPBC_PLUGIN_DIR . '/core/lib/wpdev-booking-class.php'; // C L A S S B o o k i n g.
267 454 require_once WPBC_PLUGIN_DIR . '/core/lib/wpbc-booking-new.php'; // N e w.
268 455 require_once WPBC_PLUGIN_DIR . '/core/lib/wpbc-cron.php'; // CRON @since: 5.2.0.
269 456
@@ -289,7 +476,16 @@
289 476 require_once WPBC_PLUGIN_DIR . '/core/any/activation.php';
290 477 require_once WPBC_PLUGIN_DIR . '/core/wpbc-activation.php';
291 478
292 479 require_once WPBC_PLUGIN_DIR . '/core/wpbc-dev-api.php'; // API for Booking Calendar integrations.
480 +
481 +// Development-only tests are disabled when the removable _tests bootstrap is unavailable.
482 +$wpbc_tests_bootstrap_file = WPBC_PLUGIN_DIR . '/_tests/wpbc-tests.php';
483 +if ( is_admin() && is_readable( $wpbc_tests_bootstrap_file ) ) {
484 + require_once $wpbc_tests_bootstrap_file;
485 +}
486 +unset( $wpbc_tests_bootstrap_file );
487 +
488 +wpbc_prevent_incompatible_pro_version_loading();
293 489
294 490 make_bk_action( 'wpbc_loaded_php_files' );
295 491 do_action( 'wpbc_loaded_php_files' );