| 1 |
<?php |
| 2 |
|
| 3 |
class LSD_Integrations extends LSD_Base |
| 4 |
{ |
| 5 |
public function init() |
| 6 |
{ |
| 7 |
// Elementor Integration |
| 8 |
$elementor = new LSD_Integrations_Elementor(); |
| 9 |
$elementor->init(); |
| 10 |
|
| 11 |
// Block Editor Integration |
| 12 |
$be = new LSD_Integrations_BE(); |
| 13 |
$be->init(); |
| 14 |
|
| 15 |
// VC Integration |
| 16 |
$vc = new LSD_Integrations_VC(); |
| 17 |
$vc->init(); |
| 18 |
|
| 19 |
// Divi Integration |
| 20 |
$divi = new LSD_Integrations_Divi(); |
| 21 |
$divi->init(); |
| 22 |
|
| 23 |
// KC Integration |
| 24 |
$kc = new LSD_Integrations_KC(); |
| 25 |
$kc->init(); |
| 26 |
|
| 27 |
// Mailchimp Integration |
| 28 |
$mailchimp = new LSD_Integrations_Mailchimp(); |
| 29 |
$mailchimp->init(); |
| 30 |
|
| 31 |
// WP All Import Integration |
| 32 |
$allimport = new LSD_Integrations_Allimport(); |
| 33 |
$allimport->init(); |
| 34 |
} |
| 35 |
} |
| 36 |
|