| 1 |
<?php |
| 2 |
|
| 3 |
namespace FluentCommunity\Modules\Integrations; |
| 4 |
|
| 5 |
use FluentCommunity\App\Services\Helper; |
| 6 |
|
| 7 |
class Integrations |
| 8 |
{ |
| 9 |
|
| 10 |
public function register() |
| 11 |
{ |
| 12 |
$this->init(); |
| 13 |
} |
| 14 |
|
| 15 |
public function init() |
| 16 |
{ |
| 17 |
if (defined('FLUENTCRM')) { |
| 18 |
new \FluentCommunity\Modules\Integrations\FluentCRM\SpaceJoinTrigger(); |
| 19 |
|
| 20 |
// Course Specifics |
| 21 |
if (Helper::isFeatureEnabled('course_module')) { |
| 22 |
new \FluentCommunity\Modules\Integrations\FluentCRM\CourseEnrollmentTrigger(); |
| 23 |
} |
| 24 |
} |
| 25 |
} |
| 26 |
} |
| 27 |
|