| @@ -6,9 +6,9 @@ | ||
| 6 | 6 | Author: wpdevelop, oplugins |
| 7 | 7 | Author URI: https://wpbookingcalendar.com/ |
| 8 | 8 | Text Domain: booking |
| 9 | 9 | Domain Path: /languages/ |
| 10 | -Version: 11.4.2 | |
| 10 | +Version: 11.8.2 | |
| 11 | 11 | License: GPLv2 or later |
| 12 | 12 | */ |
| 13 | 13 | |
| 14 | 14 | /* |
| @@ -33,17 +33,54 @@ | ||
| 33 | 33 | } |
| 34 | 34 | |
| 35 | 35 | |
| 36 | 36 | if ( ! defined( 'WP_BK_VERSION_NUM' ) ) { |
| 37 | - define( 'WP_BK_VERSION_NUM', '11.4.2' ); | |
| 37 | + define( 'WP_BK_VERSION_NUM', '11.8.2' ); | |
| 38 | 38 | } |
| 39 | 39 | if ( ! defined( 'WP_BK_PRO_BFB_ONLY_VERSION' ) ) { |
| 40 | - define( 'WP_BK_PRO_BFB_ONLY_VERSION', '11.4' ); // First Pro version that no longer loads legacy Booking Form settings pages. | |
| 40 | + define( 'WP_BK_PRO_BFB_ONLY_VERSION', '11.4' ); // First Pro version that no longer loads legacy Booking Form settings pages. | |
| 41 | 41 | } |
| 42 | 42 | if ( ! defined( 'WP_BK_MINOR_UPDATE' ) ) { |
| 43 | 43 | define( 'WP_BK_MINOR_UPDATE', true ); |
| 44 | 44 | } |
| 45 | 45 | |
| 46 | +/** | |
| 47 | + * Default Form Style accent color for new Booking Calendar installations. | |
| 48 | + * | |
| 49 | + * Existing saved settings are intentionally preserved when this value changes. | |
| 50 | + * | |
| 51 | + * @since 11.5.0 | |
| 52 | + * @var string | |
| 53 | + */ | |
| 54 | +if ( ! defined( 'WPBC_DEFAULT_FORM_ACCENT_COLOR' ) ) { | |
| 55 | + define( 'WPBC_DEFAULT_FORM_ACCENT_COLOR', '#4765d5' ); // '#4765d5' -> default blue '#465160'; -> black // '#3858e9'; -> light blue // '#3849e8' -> light Woo. | |
| 56 | +} | |
| 57 | + | |
| 58 | +/** | |
| 59 | + * Master release gate for unfinished Booking Calendar 11.6 functionality. | |
| 60 | + * | |
| 61 | + * This gate keeps the new Booking Resources manager disabled independently | |
| 62 | + * from the released Services and Appointment functionality. | |
| 63 | + * | |
| 64 | + * @since 11.6.0 | |
| 65 | + */ | |
| 66 | +if ( ! defined( 'WPBC_ENABLE_11_6_FEATURES' ) ) { | |
| 67 | + define( 'WPBC_ENABLE_11_6_FEATURES', true ); | |
| 68 | +} | |
| 69 | + | |
| 70 | +/** | |
| 71 | + * Select the source used for bundled starter images. | |
| 72 | + * | |
| 73 | + * Set this constant to `remote` before Booking Calendar loads to resolve | |
| 74 | + * starter images from the Booking Calendar website. Every other value keeps | |
| 75 | + * the default, update-safe local plugin asset source. | |
| 76 | + * | |
| 77 | + * @since 11.6.0 | |
| 78 | + * @var string Supported values are `local` and `remote`. | |
| 79 | + */ | |
| 80 | +if ( ! defined( 'WPBC_STARTER_ASSETS_SOURCE' ) ) { | |
| 81 | + define( 'WPBC_STARTER_ASSETS_SOURCE', 'remote' ); | |
| 82 | +} | |
| 46 | 83 | |
| 47 | 84 | // --------------------------------------------------------------------------------------------------------------------- |
| 48 | 85 | // PRIMARY URL CONSTANTS |
| 49 | 86 | // --------------------------------------------------------------------------------------------------------------------- |