# fluent-cart/1.6.4/app/Modules/IntegrationActions/GlobalIntegrationActionHandler.php

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

- Page: https://pluginprobe.com/plugins/fluent-cart/1.6.4/code/app/Modules/IntegrationActions/GlobalIntegrationActionHandler.php
- Raw: https://pluginprobe.com/plugins/fluent-cart/1.6.4/raw/app/Modules/IntegrationActions/GlobalIntegrationActionHandler.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/app/Modules/IntegrationActions/GlobalIntegrationActionHandler.php#L10-L20`.

```php
<?php

namespace FluentCart\App\Modules\IntegrationActions;

class GlobalIntegrationActionHandler
{
    public function register()
    {
        add_action('fluentcart_loaded', [$this, 'init']);
    }

    public function init()
    {
        add_action('init', function () {
            do_action('fluent_cart/register_integration_action');
        });

    }

    public static function getAll()
    {
        return apply_filters('fluent_cart/integration/get_global_integration_actions', []);
    }
}
```
