# fluent-community/1.0.97/Modules/Integrations/Integrations.php

FluentCommunity – Ultra-Fast High-Performance Social Network, Community, LMS &amp; Online Courses, version 1.0.97. 27 lines.

- Page: https://pluginprobe.com/plugins/fluent-community/1.0.97/code/Modules/Integrations/Integrations.php
- Raw: https://pluginprobe.com/plugins/fluent-community/1.0.97/raw/Modules/Integrations/Integrations.php
- Modified: 2024-11-07T12:38:44+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-community/1.0.97/code/Modules/Integrations/Integrations.php#L10-L20`.

```php
<?php

namespace FluentCommunity\Modules\Integrations;

use FluentCommunity\App\Services\Helper;

class Integrations
{

    public function register()
    {
        $this->init();
    }

    public function init()
    {
        if (defined('FLUENTCRM')) {
            new \FluentCommunity\Modules\Integrations\FluentCRM\SpaceJoinTrigger();

            // Course Specifics
            if (Helper::isFeatureEnabled('course_module')) {
                new \FluentCommunity\Modules\Integrations\FluentCRM\CourseEnrollmentTrigger();
            }
        }
    }
}

```
