register('3.6.9', 'fluentwp_scheduler_initialize'); // WRCS: DEFINED_VERSION. } /** * Initializes this version of Action Scheduler. */ function fluentwp_scheduler_initialize() { // WRCS: DEFINED_VERSION. // A final safety check is required even here, because historic versions of Action Scheduler // followed a different pattern (in some unusual cases, we could reach this point and the // ActionScheduler class is already defined—so we need to guard against that). if (!class_exists('ActionScheduler', false)) { require_once FLUENT_BOOKING_DIR . 'vendor/woocommerce/action-scheduler/classes/abstracts/ActionScheduler.php'; ActionScheduler::init(FLUENT_BOOKING_DIR . 'vendor/woocommerce/action-scheduler/action-scheduler.php'); } } // Support usage in themes - load this version if no plugin has loaded a version yet. if (did_action('plugins_loaded') && !doing_action('plugins_loaded') && !class_exists('ActionScheduler', false)) { fluentwp_scheduler_initialize(); // WRCS: DEFINED_VERSION. do_action('action_scheduler_pre_theme_init'); // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound ActionScheduler_Versions::initialize_latest_version(); } }