| 1 |
<?php |
| 2 |
|
| 3 |
namespace FluentSupport\App\Services\Integrations; |
| 4 |
|
| 5 |
|
| 6 |
use FluentSupport\App\Modules\IntegrationSettingsModule; |
| 7 |
use FluentSupport\App\Services\Integrations\Slack\SlackNotification; |
| 8 |
|
| 9 |
class IntegrationInit |
| 10 |
{ |
| 11 |
public function init() |
| 12 |
{ |
| 13 |
if(defined('FLUENTCRM')) { |
| 14 |
(new FluentCRM())->boot(); |
| 15 |
} |
| 16 |
|
| 17 |
if(defined('FLUENTFORM')) { |
| 18 |
new \FluentSupport\App\Services\Integrations\FluentForm\FeedIntegration(wpFluentForm()); |
| 19 |
} |
| 20 |
} |
| 21 |
|
| 22 |
} |
| 23 |
|