# fluent-cart/1.6.4/boot/action_scheduler_loader.php

FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler, version 1.6.4. 41 lines.

- Page: https://pluginprobe.com/plugins/fluent-cart/1.6.4/code/boot/action_scheduler_loader.php
- Raw: https://pluginprobe.com/plugins/fluent-cart/1.6.4/raw/boot/action_scheduler_loader.php
- Modified: 2025-10-14T16:36:46+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/fluent-cart/1.6.4/code/boot/action_scheduler_loader.php#L10-L20`.

```php
<?php defined('ABSPATH') or die;

if (!function_exists('fluent_cart_scheduler_register') && function_exists('add_action')) { // WRCS: DEFINED_VERSION.
    if (!class_exists('ActionScheduler_Versions', false)) {
        require_once FLUENTCART_PLUGIN_PATH . 'vendor/woocommerce/action-scheduler/classes/ActionScheduler_Versions.php';
        add_action('plugins_loaded', array('ActionScheduler_Versions', 'initialize_latest_version'), 1, 0);
    }

    add_action('plugins_loaded', 'fluent_cart_scheduler_register', 0, 0); // WRCS: DEFINED_VERSION.

    /**
     * Registers this version of Action Scheduler.
     */
    function fluent_cart_scheduler_register()
    { // WRCS: DEFINED_VERSION.
        $versions = ActionScheduler_Versions::instance();
        $versions->register('3.9.2', 'fluent_cart_scheduler_initialize'); // WRCS: DEFINED_VERSION.
    }

    /**
     * Initializes this version of Action Scheduler.
     */
    function fluent_cart_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 FLUENTCART_PLUGIN_PATH . 'vendor/woocommerce/action-scheduler/classes/abstracts/ActionScheduler.php';
            ActionScheduler::init(FLUENTCART_PLUGIN_PATH . '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)) {
        fluent_cart_scheduler_initialize(); // WRCS: DEFINED_VERSION.
        do_action('action_scheduler_pre_theme_init');
        ActionScheduler_Versions::initialize_latest_version();
    }
}

```
