# fluent-support/1.10.4/app/Services/Integrations/IntegrationInit.php

Fluent Support – Helpdesk &amp; Customer Support Ticket System, version 1.10.4. 23 lines.

- Page: https://pluginprobe.com/plugins/fluent-support/1.10.4/code/app/Services/Integrations/IntegrationInit.php
- Raw: https://pluginprobe.com/plugins/fluent-support/1.10.4/raw/app/Services/Integrations/IntegrationInit.php
- Modified: 2025-10-23T14:00:12+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-support/1.10.4/code/app/Services/Integrations/IntegrationInit.php#L10-L20`.

```php
<?php

namespace FluentSupport\App\Services\Integrations;

class IntegrationInit
{
    public function init()
    {
        if(defined('FLUENTCRM') && class_exists('\FluentSupport\App\Services\Integrations\FluentCrm\FluentCRMWidgets')) {
            (new \FluentSupport\App\Services\Integrations\FluentCrm\FluentCRMWidgets())->boot();
        }

        if (defined('FLUENTFORM') && class_exists('\FluentSupport\App\Services\Integrations\FluentForm\FeedIntegration')) {
            new \FluentSupport\App\Services\Integrations\FluentForm\FeedIntegration();
        }

        if (defined('FLUENTCART_VERSION') && class_exists('\FluentSupport\App\Services\Integrations\FluentCart\FluentCart')) {
            (new \FluentSupport\App\Services\Integrations\FluentCart\FluentCart())->boot();
        }
    }

}

```
