PluginProbe
Listdom: AI-powered Business Directory with Classifieds Ads Listings / trunk
Listdom: AI-powered Business Directory with Classifieds Ads Listings vtrunk
6.0.0 5.9.0 5.8.1 5.8.0 5.7.0 5.6.0 trunk 1.0.0 1.0.1 1.0.2 1.1.0 1.1.1 1.2.0 1.2.1 1.3.0 1.3.1 1.4.0 1.5.0 1.6.0 1.6.1 1.6.2 1.6.3 1.7.0 1.8.0 1.9.0 All 75 releases
listdom / app / includes / integrations.php

integrations.php in Listdom: AI-powered Business Directory with Classifieds Ads Listings trunk, at app/includes/integrations.php

36 lines 818 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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