# booking/11.8.2/includes/page-form-builder/bfb-include.php

Booking Calendar, version 11.8.2. 194 lines.

- Page: https://pluginprobe.com/plugins/booking/11.8.2/code/includes/page-form-builder/bfb-include.php
- Raw: https://pluginprobe.com/plugins/booking/11.8.2/raw/includes/page-form-builder/bfb-include.php
- Modified: 2026-09-15T20:13:12+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/booking/11.8.2/code/includes/page-form-builder/bfb-include.php#L10-L20`.

```php
<?php
/**
 * Include all  nessacery files for the Booking From Builder (BFB)
 *
 * @package     Booking Calendar.
 * @author      wpdevelop, oplugins
 * @web-site    https://wpbookingcalendar.com/
 * @email       info@wpbookingcalendar.com
 *
 * @since       11.0.0
 * @modified    2025-08-29
 * @version     1.0
 */

// ---------------------------------------------------------------------------------------------------------------------
// == File  bfb-include.php == Time point: 2025-08-29 12:25
// ---------------------------------------------------------------------------------------------------------------------
if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

// Slug of the Builder page passed by footer hook / bootstrap.
if ( ! defined( 'WPBC_BFB_BUILDER_PAGE_SLUG' ) ) {
	define( 'WPBC_BFB_BUILDER_PAGE_SLUG', 'wpbc-ajx_booking_builder_booking_form' );
}

require_once WPBC_PLUGIN_DIR . '/includes/_front_end/form-style-presets.php';                                          // Shared global form style presets.

// =====================================================================================================================
// == Ajax ==
// =====================================================================================================================
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/ajax/bfb-ajax.php';                                         // AJAX controller for saving / loading / listing ...

// =====================================================================================================================
// == Save / Load ==
// =====================================================================================================================
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/save-load/bfb-form-storage.php';                            // Low-level storage for BFB form structures. Handles DB.
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/save-load/bfb-form-manager.php';                            // Booking Form Builder storage manager.
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/legacy-import/form_templates.php';                          // Import-only legacy form templates.
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/legacy-import/form_simple__default.php';                    // Import-only Simple form defaults.
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/legacy-import/form_simple__get_data.php';                   // Import-only Simple form shortcode conversion helpers.
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/save-load/bfb-activate.php';                                // Activate / Deactivate.
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/legacy-import/bfb-import-simple-form.php';                  // Import - Simple form - migration loader.
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/legacy-import/bfb-import-legacy-forms.php';                 // Import - all legacy forms - migration loader.
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/save-load/bfb-form-loader.php';                             // Loader.

require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/assets/template-records/bfb-activate-templates.php';        // Update Templaets on Activation.
// =====================================================================================================================
// == Admin Page UI ==
// =====================================================================================================================
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/ui-parts/bfb-ui__nav_horis.php';                            // "Horisontal  top menu".

// =====================================================================================================================
// == Admin Page Templates (Tpl) ==
// =====================================================================================================================
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/admin-page-tpl/class-wpbc-bfb-template-picker-section.php'; // Shared Form Teamplets Section.
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/admin-page-tpl/tpl-modal_page-delete.php';                  // "Delete Page" Modal Window - WP Template for Admin page.
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/admin-page-tpl/tpl-modal_item-delete.php';                  // Template for confimration  of deleting elements.
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/admin-page-tpl/tpl-modal__form_add_new.php';                // Template for creation new booking form.
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/admin-page-tpl/tpl-modal__form_open.php';                   // Template for loading booking forms.
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/admin-page-tpl/tpl-modal__form_save_as.php';                // Template for Save As form.
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/admin-page-tpl/tpl-modal__form_apply_template.php';         // Template for Apply Template to form.

// =====================================================================================================================
// == Publish (Ajax / Tpl) ==
// =====================================================================================================================
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/publish/class-wpbc-bfb-publish-ajax.php';                   // Ajax Endpoint.
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/publish/tpl-modal__publish.php';                            // "Publish" tpl.

// =====================================================================================================================
// == Settings Options ==
// =====================================================================================================================
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/form-settings/options-render.php';                          // Save and Load different form  settings - right sidebar "Settings".
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/form-settings/options-defs.php';                            // Listing of all  Settings options.
// =====================================================================================================================
// == Current Form Details ==
// =====================================================================================================================
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/form-details/current-form-details.php';                     // Current Form Details.

// =====================================================================================================================
// == Advanced Mode ==
// =====================================================================================================================
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/advanced-mode/bfb-advanced-mode.php';                   // Advanced form  mode.


// =====================================================================================================================
// == Core ==
// =====================================================================================================================
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/bfb-schemas.php';
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/bfb-bootstrap.php';

// =====================================================================================================================
// == Field Packs ==
// =====================================================================================================================
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/section/section-wptpl.php';                     // -- Section --

// =====================================================================================================================
// == Basic Packs ==
// =====================================================================================================================
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/calendar/calendar.php';                         // -- Calendar --  // Calendar - WP Template.
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/email/field-email-wptpl.php';                   // -- Email --     // Email Field - WP Template.
// -- Prefilled Packs --.
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/text-firstname/field-text-firstname-preset.php';   // First Name Field - based on "Text Field Pack".
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/text-secondname/field-text-secondname-preset.php'; // Second Name Field - based on "Text Field Pack".
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/static-text/field-static-text.php';             // Static Text.
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/captcha/field-captcha-wptpl.php';               // -- CAPTCHA --.
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/submit/submit.php';                             // -- Submit --

// =====================================================================================================================
// == Standard Packs ==
// =====================================================================================================================
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/text/field-text.php';                           // -- Text -- // Reference Pack: JSON.
// require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/text/field-text-wptpl.php';                  // -- Text -- // Reference Pack: WP Template.
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/textarea/textarea.php';                         // -- Textara --.
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/select/field-select-wptpl.php';                 // -- Selectbox --  // Reference Pack: WP Template.
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/radio/field-radio-wptpl.php';                   // -- Radio --.
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/checkbox/field-checkbox-wptpl.php';             // -- Checkbox --

require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/accept-terms/field-accept-terms-wptpl.php';     // -- Terms --

// =====================================================================================================================
// == Times Packs ==
// =====================================================================================================================
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/time-picker-appearance.php';                   // -- Shared Time Picker Appearance --.
// require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/time-range/time-range.php';                  // -- Time Range --
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/time-range/field-rangetime-wptpl.php';          // -- Time Range 2 --
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/time-start/field-starttime-wptpl.php';
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/time-end/field-endtime-wptpl.php';
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/time-duration/field-durationtime-wptpl.php';
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/time-duration-service/field-durationtime-service-preset.php';
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/weekday-rangetime/field-weekday-rangetime-wptpl.php';
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/weekday-starttime/field-weekday-starttime-wptpl.php';
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/season-rangetime/field-season-rangetime-wptpl.php';
// require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/time-grid/time-grid.php';                    // -- TODO: Time Grid  --.


// =====================================================================================================================
// == Hints Packs ==
// =====================================================================================================================
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/custom-shortcode/field-custom-shortcode.php';
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/hint-cost_hint/field-cost-hint-wptpl.php';
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/hint-selected_short_timedates_hint/field-selected-short-timedates-hint-wptpl.php';
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/hint-capacity_hint/field-capacity-hint-wptpl.php';
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/hint-bookingresource_info/field-bookingresource-info-wptpl.php';

require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/hint-check_in_date_hint/field-check-in-date-hint-wptpl.php';
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/hint-check_out_date_hint/field-check-out-date-hint-wptpl.php';
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/hint-check_out_plus1day_hint/field-check-out-plus1day-hint-wptpl.php';
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/hint-days_number_hint/field-days-number-hint-wptpl.php';
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/hint-nights_number_hint/field-nights-number-hint-wptpl.php';

require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/hint-start_time_hint/field-start-time-hint-wptpl.php';
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/hint-end_time_hint/field-end-time-hint-wptpl.php';

require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/hint-selected_short_dates_hint/field-selected-short-dates-hint-wptpl.php';
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/hint-selected_dates_hint/field-selected-dates-hint-wptpl.php';
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/hint-selected_timedates_hint/field-selected-timedates-hint-wptpl.php';

require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/hint-cancel_date_hint/field-cancel-date-hint-wptpl.php';
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/hint-pre_checkin_date_hint/field-pre-checkin-date-hint-wptpl.php';

require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/hint-original_cost_hint/field-original-cost-hint-wptpl.php';
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/hint-additional_cost_hint/field-additional-cost-hint-wptpl.php';
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/hint-deposit_hint/field-deposit-hint-wptpl.php';
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/hint-balance_hint/field-balance-hint-wptpl.php';
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/hint-coupon_discount_hint/field-coupon-discount-hint-wptpl.php';

require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/hint-resource_title_hint/field-resource-title-hint-wptpl.php';
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/hint-service_title_hint/field-service-title-hint-wptpl.php';


// =====================================================================================================================
// == Structure Packs ==
// =====================================================================================================================
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/wizard-nav/wizard-nav.php';                     // -- Wizard Nav. --
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/appointment-start-over/appointment-start-over.php'; // -- Appointment Start Over. --
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/divider/divider.php';                           // -- Divider --
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/field-packs/steps-timeline/field-steps-timeline.php';       // -- Steps Timeline in Wizards --

// =====================================================================================================================
// == Page ==
// =====================================================================================================================
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/bfb-ui-elements.php';
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/builder-form-page.php';

// Boot Hybrid++ for this page: collect packs, localize schemas, and hook template printing.
WPBC_BFB_Bootstrap::init();

// =====================================================================================================================
// == Preview Service ==
// =====================================================================================================================
require_once WPBC_PLUGIN_DIR . '/includes/page-form-builder/preview/bfb-preview.php';
WPBC_BFB_Preview_Service::get_instance();    // Initialize preview PHP CLASS.

```
