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