| 1 |
<?php |
| 2 |
/** |
| 3 |
* Hybrid++ Bootstrap: collect packs, localize schemas, print pack templates. |
| 4 |
* |
| 5 |
* @package Booking Calendar. |
| 6 |
* @author wpdevelop, oplugins |
| 7 |
* @web-site https://wpbookingcalendar.com/ |
| 8 |
* @email info@wpbookingcalendar.com |
| 9 |
* |
| 10 |
* @since 11.0.0 |
| 11 |
* @modified 2025-08-29 |
| 12 |
* @version 1.0 |
| 13 |
*/ |
| 14 |
|
| 15 |
// --------------------------------------------------------------------------------------------------------------------- |
| 16 |
// == File bfb-bootstrap.php == Time point: 2025-08-29 12:25 |
| 17 |
// --------------------------------------------------------------------------------------------------------------------- |
| 18 |
if ( ! defined( 'ABSPATH' ) ) { |
| 19 |
exit; |
| 20 |
} |
| 21 |
|
| 22 |
|
| 23 |
class WPBC_BFB_Bootstrap { |
| 24 |
|
| 25 |
/** |
| 26 |
* Guard flag. |
| 27 |
* |
| 28 |
* @var bool |
| 29 |
*/ |
| 30 |
protected static $packs_collected = false; |
| 31 |
|
| 32 |
/** |
| 33 |
* Guard flag. |
| 34 |
* |
| 35 |
* @var bool |
| 36 |
*/ |
| 37 |
protected static $templates_printed = false; |
| 38 |
|
| 39 |
/** |
| 40 |
* Packs keyed by type. |
| 41 |
* |
| 42 |
* @var array |
| 43 |
*/ |
| 44 |
protected static $packs_by_type = array(); |
| 45 |
|
| 46 |
|
| 47 |
/** |
| 48 |
* Init all hooks for the current request. |
| 49 |
* |
| 50 |
* @return void |
| 51 |
*/ |
| 52 |
public static function init() { |
| 53 |
|
| 54 |
// 1) Enqueue BFB scripts, after enqueued basic WPBC scripts (EXTERNAL HOOK). Localize schemas, etc... |
| 55 |
add_action( 'wpbc_enqueue_js_files', array( __CLASS__, 'on_admin_enqueue__js_files' ), 50 ); |
| 56 |
|
| 57 |
// 2) Enqueue BFB CSS, after basic WPBC scripts are enqueued (EXTERNAL HOOK). |
| 58 |
add_action( 'wpbc_enqueue_css_files', array( __CLASS__, 'on_admin_enqueue__css_files' ), 50 ); |
| 59 |
|
| 60 |
// 3) Primary: print templates at the end of the page using custom footer hook. The hook passes the slug; we only print when it equals our builder slug. |
| 61 |
add_action( 'wpbc_hook_settings_page_footer', array( __CLASS__, 'on_settings_page_footer' ), 10, 1 ); |
| 62 |
|
| 63 |
// 4) Fallback printer (for the URL path) so templates still print if the custom footer hook isn’t fired. |
| 64 |
add_action( 'admin_print_footer_scripts', array( __CLASS__, 'fallback_print_on_admin_footer' ), 20 ); |
| 65 |
} |
| 66 |
|
| 67 |
|
| 68 |
/** |
| 69 |
* Enqueue JS files and Localize them. |
| 70 |
* |
| 71 |
* @param sring $where_to_load - parameter from root JS loader script. Value can be: 'both', 'client', 'admin'. In this method can be ignore, because we check via self::is_builder_by_request(). |
| 72 |
* |
| 73 |
* @return void |
| 74 |
*/ |
| 75 |
public static function on_admin_enqueue__js_files( $where_to_load ) { |
| 76 |
|
| 77 |
if ( ! self::is_builder_by_request() ) { |
| 78 |
// Might still reach the page via the custom footer hook path; in that case we'll only print templates there. |
| 79 |
return; |
| 80 |
} |
| 81 |
$in_footer = true; |
| 82 |
$core_handle = apply_filters( 'wpbc_bfb_inspector_script_handle', 'wpbc-bfb' ); |
| 83 |
|
| 84 |
// --- Vendor --- |
| 85 |
wp_enqueue_script( 'wpbc-sortable', wpbc_plugin_url( '/vendors/sortablejs/Sortable.min.js' ), array( 'wpbc_all' ), WP_BK_VERSION_NUM, $in_footer ); |
| 86 |
|
| 87 |
// --- Color picker (Coloris) --- Load BEFORE core BFB scripts so the Inspector can detect window.Coloris during first render. |
| 88 |
wp_enqueue_style( 'coloris', wpbc_plugin_url( '/vendors/coloris/dist/coloris.min.css' ), array(), WP_BK_VERSION_NUM ); |
| 89 |
wp_enqueue_script( 'coloris', wpbc_plugin_url( '/vendors/coloris/dist/coloris.min.js' ), array(), WP_BK_VERSION_NUM, $in_footer ); |
| 90 |
|
| 91 |
|
| 92 |
// -- Admin WP Templates Helper (for modals etc..). |
| 93 |
wp_enqueue_script( 'wpbc-bfb-templates', wpbc_plugin_url( '/includes/page-form-builder/admin-page-tpl/_out/bfb-templates.js' ), array( 'wp-util' ), WP_BK_VERSION_NUM, $in_footer ); |
| 94 |
|
| 95 |
// --- Support Functions --- |
| 96 |
wp_enqueue_script( 'wpbc-bfb_support_functions', wpbc_plugin_url( '/includes/page-form-builder/_src/support_functions.js' ), array(), WP_BK_VERSION_NUM, $in_footer ); |
| 97 |
|
| 98 |
// --- All Core BFB Scripts --- |
| 99 |
wp_enqueue_script( $core_handle, wpbc_plugin_url( '/_dist/bfb/_out/wpbc_bfb.js' ), array( 'wpbc-bfb_support_functions', 'wpbc-sortable', 'wp-util', 'wpbc-bfb-templates', 'coloris' ), WP_BK_VERSION_NUM, $in_footer ); |
| 100 |
|
| 101 |
// 2) --- Time Utils --- |
| 102 |
wp_enqueue_script( 'wpbc-bfb-time-utils', wpbc_plugin_url( '/includes/page-form-builder/_out/bfb-time-utils.js' ), array( $core_handle ), WP_BK_VERSION_NUM, $in_footer ); |
| 103 |
|
| 104 |
// 3) --- Field packs (they can now safely reference wpbc_bfb_inspector_factory_slots/value_from) |
| 105 |
do_action( 'wpbc_enqueue_js_field_pack', WPBC_BFB_BUILDER_PAGE_SLUG ); |
| 106 |
|
| 107 |
// 5) --- Builder --- |
| 108 |
wp_enqueue_script( 'wpbc-bfb_builder', wpbc_plugin_url( '/includes/page-form-builder/_out/bfb-builder.js' ), array( $core_handle ), WP_BK_VERSION_NUM, $in_footer ); |
| 109 |
|
| 110 |
// ------------------------------------------------------------------------------------------------------------- |
| 111 |
// == Self attached modules here == - (AFTER builder, because it auto-attaches via wpbc_bfb_api.ready) --- |
| 112 |
// ------------------------------------------------------------------------------------------------------------- |
| 113 |
// --- Modals, such as page deleteing etc.. |
| 114 |
wp_enqueue_script( 'wpbc-bfb_modal__form_templates', wpbc_plugin_url( '/includes/page-form-builder/admin-page-tpl/_out/modal__form_templates.js' ), array( 'wpbc-bfb_builder' ), WP_BK_VERSION_NUM, $in_footer ); |
| 115 |
wp_enqueue_script( 'wpbc-bfb_modal_page_delete', wpbc_plugin_url( '/includes/page-form-builder/admin-page-tpl/_out/modal_page_delete.js' ), array( 'wpbc-bfb_builder' ), WP_BK_VERSION_NUM, $in_footer ); |
| 116 |
wp_enqueue_script( 'wpbc-bfb_modal_item_delete', wpbc_plugin_url( '/includes/page-form-builder/admin-page-tpl/_out/modal_item_delete.js' ), array( 'wpbc-bfb_builder' ), WP_BK_VERSION_NUM, $in_footer ); |
| 117 |
wp_enqueue_script( 'wpbc-bfb_modal__form_add_new', wpbc_plugin_url( '/includes/page-form-builder/admin-page-tpl/_out/modal__form_add_new.js' ), array( 'wpbc-bfb_builder', 'wpbc-bfb_modal__form_templates' ), WP_BK_VERSION_NUM, $in_footer ); |
| 118 |
wp_enqueue_script( 'wpbc-bfb_modal__form_save_as', wpbc_plugin_url( '/includes/page-form-builder/admin-page-tpl/_out/modal__form_save_as.js' ), array( 'wpbc-bfb_builder' ), WP_BK_VERSION_NUM, $in_footer ); |
| 119 |
wp_enqueue_script( 'wpbc-bfb_modal__form_open', wpbc_plugin_url( '/includes/page-form-builder/admin-page-tpl/_out/modal__form_open.js' ), array( 'wpbc-bfb_builder' ), WP_BK_VERSION_NUM, $in_footer ); |
| 120 |
wp_enqueue_script( 'wpbc-bfb_modal__apply_template', wpbc_plugin_url( '/includes/page-form-builder/admin-page-tpl/_out/modal__form_apply_template.js' ), array( 'wpbc-bfb_builder', 'wpbc-bfb_modal__form_templates' ), WP_BK_VERSION_NUM, $in_footer ); |
| 121 |
|
| 122 |
// Form Settings. |
| 123 |
// // FixIn: 2026-01-24 wp_enqueue_script( 'wpbc-bfb-so', wpbc_plugin_url( '/includes/page-form-builder/settings-options/_out/bfb-so.js' ), array( 'jquery', 'wp-util', 'wpbc-save-load-option' ), WP_BK_VERSION_NUM, $in_footer ); |
| 124 |
wp_enqueue_script( 'wpbc-bfb-form_settings', wpbc_plugin_url( '/includes/page-form-builder/form-settings/_out/settings.js' ), array( 'jquery', 'wp-util', 'wpbc-save-load-option' ), WP_BK_VERSION_NUM, $in_footer ); |
| 125 |
wp_enqueue_script( 'wpbc-bfb-global_save_behavior', wpbc_plugin_url( '/includes/page-form-builder/form-settings/_out/global_save_behavior.js' ), array( 'wpbc-bfb-form_settings' ), WP_BK_VERSION_NUM, $in_footer ); |
| 126 |
wp_enqueue_script( 'wpbc-bfb-form_settings_effects', wpbc_plugin_url( '/includes/page-form-builder/form-settings/_out/settings_effects.js' ), array( 'wpbc-bfb-form_settings' ), WP_BK_VERSION_NUM, $in_footer ); |
| 127 |
// wp_localize_script( 'wpbc-bfb-form_settings', 'wpbc_bfb_settings_vars', array( 'plugin_url' => wpbc_plugin_url( '' ), ) ); |
| 128 |
|
| 129 |
// Form Details. |
| 130 |
wp_enqueue_script( 'wpbc-bfb-form_details_ui', wpbc_plugin_url( '/includes/page-form-builder/form-details/_out/current-form-details-ui.js' ), array( 'wpbc-bfb-form_settings' ), WP_BK_VERSION_NUM, $in_footer ); |
| 131 |
wp_enqueue_script( 'wpbc-bfb-form_details_save_delete', wpbc_plugin_url( '/includes/page-form-builder/form-details/_out/current-form-details-save_delete.js' ), array( 'wpbc-bfb-form_settings' ), WP_BK_VERSION_NUM, $in_footer ); |
| 132 |
|
| 133 |
|
| 134 |
|
| 135 |
wp_enqueue_script( 'wpbc-bfb-top-tabs', wpbc_plugin_url( '/includes/page-form-builder/ui-parts/_out/bfb-top-tabs.js' ), array(), WP_BK_VERSION_NUM, true ); |
| 136 |
|
| 137 |
// --- Ajax for Save / Load --- |
| 138 |
wp_enqueue_script( 'wpbc-bfb_save_load_ajax', wpbc_plugin_url( '/includes/page-form-builder/ajax/_out/bfb-ajax.js' ), array( 'wpbc-bfb_builder' ), WP_BK_VERSION_NUM, $in_footer ); |
| 139 |
|
| 140 |
// --- Exporter --- |
| 141 |
wp_enqueue_script( 'wpbc-bfb_exporter', wpbc_plugin_url( '/includes/page-form-builder/_out/export/builder-exporter.js' ), array( 'wpbc-bfb_builder' ), WP_BK_VERSION_NUM, $in_footer ); |
| 142 |
if ( WPBC_BFB_DEBUG ) { |
| 143 |
wp_enqueue_script( 'wpbc-bfb_debug_ui', wpbc_plugin_url( '/includes/page-form-builder/_out/export/debug-ui.js' ), array( 'wpbc-bfb_exporter' ), WP_BK_VERSION_NUM, $in_footer ); |
| 144 |
} |
| 145 |
|
| 146 |
|
| 147 |
// -- Templates (optional tools) -- |
| 148 |
wp_enqueue_script( 'wpbc-bfb_form_templates', wpbc_plugin_url( '/includes/page-form-builder/_out/form_templates.js' ), array( 'wpbc-bfb_builder' ), WP_BK_VERSION_NUM, $in_footer ); |
| 149 |
|
| 150 |
// --- Right Tabs --- |
| 151 |
wp_enqueue_script( 'wpbc-bfb_rightbar_tabs', wpbc_plugin_url( '/includes/page-form-builder/_out/bfb-rightbar-tabs.js' ), array( $core_handle ), WP_BK_VERSION_NUM, $in_footer ); |
| 152 |
|
| 153 |
// Enqueue phase: collect & localize schemas if we're on the Builder screen (by URL fallback). |
| 154 |
self::collect_packs_once(); |
| 155 |
self::localize_schemas_to_inspector(); |
| 156 |
|
| 157 |
//wpbc_load_js__required_for_modals(); |
| 158 |
wpbc_load_js__required_for_media_upload(); |
| 159 |
|
| 160 |
|
| 161 |
// Loaded JavaScript files for this settings page. |
| 162 |
do_action( 'wpbc_enqueue_js_files_on_page_done', WPBC_BFB_BUILDER_PAGE_SLUG ); |
| 163 |
} |
| 164 |
|
| 165 |
|
| 166 |
/** |
| 167 |
* Enqueue CSS files. |
| 168 |
* |
| 169 |
* @param sring $where_to_load - parameter from root JS loader script. Value can be: 'both', 'client', 'admin'. In this method can be ignore, because we check via self::is_builder_by_request(). |
| 170 |
* |
| 171 |
* @return void |
| 172 |
*/ |
| 173 |
public static function on_admin_enqueue__css_files() { |
| 174 |
|
| 175 |
if ( ! self::is_builder_by_request() ) { |
| 176 |
// Might still reach the page via the custom footer hook path; in that case we'll only print templates there. |
| 177 |
return; |
| 178 |
} |
| 179 |
|
| 180 |
wp_enqueue_style( 'wpbc-ajx__builder_booking_form_page', wpbc_plugin_url( '/includes/page-form-builder/_out/builder-form-page.css' ), array(), WP_BK_VERSION_NUM ); |
| 181 |
|
| 182 |
// CSS. |
| 183 |
wpbc_enqueue_styles__front_end(); |
| 184 |
wpbc_enqueue_styles__calendar(); |
| 185 |
} |
| 186 |
|
| 187 |
|
| 188 |
/** |
| 189 |
* Custom footer hook — primary place to print pack templates. |
| 190 |
* |
| 191 |
* @param string $page Page slug passed by the hook (expected: 'wpbc-ajx_booking_builder_booking_form', e.g. - WPBC_BFB_BUILDER_PAGE_SLUG ). |
| 192 |
* @return void |
| 193 |
*/ |
| 194 |
public static function on_settings_page_footer( $page ) { |
| 195 |
|
| 196 |
if ( WPBC_BFB_BUILDER_PAGE_SLUG !== $page ) { |
| 197 |
return; |
| 198 |
} |
| 199 |
|
| 200 |
// Optional. Doucle ensure packs & schemas ready even if enqueue path didn’t run. |
| 201 |
self::collect_packs_once(); |
| 202 |
self::localize_schemas_to_inspector(); |
| 203 |
|
| 204 |
self::print_pack_templates_once( $page ); |
| 205 |
} |
| 206 |
|
| 207 |
|
| 208 |
/** |
| 209 |
* Fallback printer (for the URL path) so templates still print if the custom footer hook isn’t fired. |
| 210 |
* |
| 211 |
* @return void |
| 212 |
*/ |
| 213 |
public static function fallback_print_on_admin_footer() { |
| 214 |
|
| 215 |
if ( self::$templates_printed ) { |
| 216 |
return; |
| 217 |
} |
| 218 |
if ( ! self::is_builder_by_request() ) { |
| 219 |
return; |
| 220 |
} |
| 221 |
// Ensure packs & localization are ready. |
| 222 |
self::collect_packs_once(); |
| 223 |
self::localize_schemas_to_inspector(); |
| 224 |
|
| 225 |
// Print pack templates once. |
| 226 |
self::print_pack_templates_once( WPBC_BFB_BUILDER_PAGE_SLUG ); |
| 227 |
} |
| 228 |
|
| 229 |
|
| 230 |
// -- PROTECTED -- |
| 231 |
|
| 232 |
/** |
| 233 |
* Collect packs via filter (only once). |
| 234 |
* |
| 235 |
* @return void |
| 236 |
*/ |
| 237 |
protected static function collect_packs_once() { |
| 238 |
if ( self::$packs_collected ) { |
| 239 |
return; |
| 240 |
} |
| 241 |
$packs_raw = apply_filters( 'wpbc_bfb_register_field_packs', array() ); |
| 242 |
$packs_raw = is_array( $packs_raw ) ? $packs_raw : array(); |
| 243 |
self::$packs_by_type = WPBC_BFB_Schemas_Util::merge_packs( $packs_raw ); |
| 244 |
self::$packs_collected = true; |
| 245 |
} |
| 246 |
|
| 247 |
/** |
| 248 |
* Localize schemas to the inspector script handle. |
| 249 |
* |
| 250 |
* @return void |
| 251 |
*/ |
| 252 |
protected static function localize_schemas_to_inspector() { |
| 253 |
|
| 254 |
$handle = apply_filters( 'wpbc_bfb_inspector_script_handle', 'wpbc-bfb' ); |
| 255 |
|
| 256 |
// If the handle isn't registered yet, try again later in the same request (once). |
| 257 |
if ( ! wp_script_is( $handle, 'registered' ) && ! wp_script_is( $handle, 'enqueued' ) ) { |
| 258 |
// As a last resort, hook wp_print_scripts for this page load so we don't miss it. |
| 259 |
add_action( 'admin_print_scripts', function () use ( $handle ) { |
| 260 |
if ( wp_script_is( $handle, 'registered' ) || wp_script_is( $handle, 'enqueued' ) ) { |
| 261 |
WPBC_BFB_Bootstrap::do_localize( $handle ); |
| 262 |
} |
| 263 |
}, 100 ); |
| 264 |
return; |
| 265 |
} |
| 266 |
|
| 267 |
self::do_localize( $handle ); |
| 268 |
} |
| 269 |
|
| 270 |
/** |
| 271 |
* Perform the actual localization. |
| 272 |
* |
| 273 |
* @param string $handle |
| 274 |
* @return void |
| 275 |
*/ |
| 276 |
protected static function do_localize( $handle ) { |
| 277 |
$js_payload = WPBC_BFB_Schemas_Util::extract_schemas_for_js( self::$packs_by_type ); |
| 278 |
wp_localize_script( $handle, 'WPBC_BFB_Schemas', $js_payload ); |
| 279 |
} |
| 280 |
|
| 281 |
/** |
| 282 |
* Print templates for all collected packs (only once). |
| 283 |
* |
| 284 |
* @param string $page |
| 285 |
* @return void |
| 286 |
*/ |
| 287 |
protected static function print_pack_templates_once( $page ) { |
| 288 |
|
| 289 |
if ( self::$templates_printed ) { |
| 290 |
return; |
| 291 |
} |
| 292 |
foreach ( self::$packs_by_type as $pack ) { |
| 293 |
if ( isset( $pack['templates_printer'] ) && is_callable( $pack['templates_printer'] ) ) { |
| 294 |
call_user_func( $pack['templates_printer'], $page ); |
| 295 |
} |
| 296 |
} |
| 297 |
self::$templates_printed = true; |
| 298 |
} |
| 299 |
|
| 300 |
/** |
| 301 |
* Request-based detection of the Builder settings tab: page=wpbc-settings&tab=builder_booking_form |
| 302 |
* |
| 303 |
* @return bool |
| 304 |
*/ |
| 305 |
protected static function is_builder_by_request() { |
| 306 |
|
| 307 |
$page = isset( $_GET['page'] ) ? sanitize_key( wp_unslash( $_GET['page'] ) ) : ''; // phpcs:ignore WordPress.Security.NonceVerification.Recommended, WordPress.Security.NonceVerification.Missing |
| 308 |
$tab = isset( $_GET['tab'] ) ? sanitize_key( wp_unslash( $_GET['tab'] ) ) : ''; // phpcs:ignore WordPress.Security.NonceVerification.Recommended, WordPress.Security.NonceVerification.Missing |
| 309 |
|
| 310 |
return ( 'wpbc-settings' === $page && 'builder_booking_form' === $tab ); |
| 311 |
} |
| 312 |
} |
| 313 |
|