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

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

- Page: https://pluginprobe.com/plugins/fluent-support/1.5.2/code/app/Services/Integrations/IntegrationInit.php
- Raw: https://pluginprobe.com/plugins/fluent-support/1.5.2/raw/app/Services/Integrations/IntegrationInit.php
- Modified: 2021-11-12T14:57:38+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.5.2/code/app/Services/Integrations/IntegrationInit.php#L10-L20`.

```php
<?php

namespace FluentSupport\App\Services\Integrations;


use FluentSupport\App\Modules\IntegrationSettingsModule;
use FluentSupport\App\Services\Integrations\Slack\SlackNotification;

class IntegrationInit
{
    public function init()
    {
        if(defined('FLUENTCRM')) {
            (new FluentCRM())->boot();
        }

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

}

```
