| @@ -25,10 +25,127 @@ | ||
| 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 | 27 | require_once WPBC_PLUGIN_DIR . '/includes/_functions/feature-flags.php'; // Release gates for functionality under development. |
| 28 | 28 | require_once WPBC_PLUGIN_DIR . '/includes/_functions/starter-assets.php'; // Local or remote starter-image URLs. |
| 29 | -require_once WPBC_PLUGIN_DIR . '/includes/booking_modes/booking_modes.php'; // Administration presentation modes. | |
| 30 | 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 | + | |
| 31 | 148 | require_once WPBC_PLUGIN_DIR . '/core/any/class-css-js.php'; // Abstract. Loading CSS & JS files = Package: Any =. |
| 32 | 149 | require_once WPBC_PLUGIN_DIR . '/core/any/class-admin-settings-api.php'; // Abstract. Settings API. |
| 33 | 150 | |
| 34 | 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 . |
| @@ -103,9 +220,9 @@ | ||
| 103 | 220 | require_once WPBC_PLUGIN_DIR . '/includes/_functions/calendar_scripts.php'; // Calendar Scripts. |
| 104 | 221 | |
| 105 | 222 | require_once WPBC_PLUGIN_DIR . '/core/wpbc_functions.php'; // Functions. |
| 106 | 223 | require_once WPBC_PLUGIN_DIR . '/core/wpbc_functions_dates.php'; // Function Dates New in 9.8. |
| 107 | -require_once WPBC_PLUGIN_DIR . '/includes/_front_end/class-fe-booking-context.php'; // Signed Classic shortcode context for AJAX availability and booking requests. | |
| 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. | |
| 108 | 225 | require_once WPBC_PLUGIN_DIR . '/core/form_parser.php'; // Parser for booking form New in 9.8. |
| 109 | 226 | require_once WPBC_PLUGIN_DIR . '/core/wpbc-dates.php'; // Dates. |
| 110 | 227 | require_once WPBC_PLUGIN_DIR . '/includes/_front_end/date-hints.php'; // Front-end date hints for Free. // FixIn: 10.15.6.2. |
| 111 | 228 | require_once WPBC_PLUGIN_DIR . '/core/wpbc_welcome.php'; // Welcome Panel Functions. |
| @@ -220,9 +337,9 @@ | ||
| 220 | 337 | |
| 221 | 338 | // Domain-neutral template-driven catalog mechanics shared by all registered catalogs. |
| 222 | 339 | require_once WPBC_PLUGIN_DIR . '/includes/_shared-ui-catalog/wpbc-ui-catalog.php'; |
| 223 | 340 | |
| 224 | -if ( wpbc_is_11_6_features_enabled() && wpbc_is_11_6_catalog_v2_enabled() ) { | |
| 341 | +if ( wpbc_is_11_6_features_enabled() ) { | |
| 225 | 342 | // Independent template-driven Booking Resources catalog. |
| 226 | 343 | require_once WPBC_PLUGIN_DIR . '/includes/page-catalog-booking-resources/booking-resources-catalog.php'; |
| 227 | 344 | } |
| 228 | 345 | |