# fluent-cart/1.6.4/app/Services/Integration.php

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

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

```php
<?php

namespace FluentCart\App\Services;

use FluentCart\App\Modules\Integrations\FluentPlugins\FluentCommunityConnect;
use FluentCart\App\Modules\Integrations\FluentPlugins\FluentCRMConnect;
use FluentCart\App\Modules\Integrations\FluentPlugins\FluentCRMDeepIntegration;
use FluentCart\App\Modules\Integrations\FluentPlugins\FluentSupportWidget;

class Integration
{
    public function register(): void
    {
        add_action('init', function () {
            $this->init();
            (new \FluentCart\App\Listeners\IntegrationEventListener())->registerHooks();
        }, 2);
    }

    private function init()
    {
        (new FluentCRMConnect)->register();
        (new FluentCommunityConnect())->register();

        if (defined('FLUENTCRM')) {
            (new FluentCRMDeepIntegration())->init();
        }

        if(defined('FLUENT_SUPPORT_VERSION')) {
            (new FluentSupportWidget())->register();
        }
    }

}

```
