PluginProbe
JetFormBuilder — Dynamic Blocks Form Builder / 3.5.3
JetFormBuilder — Dynamic Blocks Form Builder v3.5.3
3.6.5.2 3.6.5.1 3.6.5 3.6.4.2 3.6.4.1 3.6.4 3.6.3.1 3.6.3 3.6.2.2 3.6.2.1 3.6.2 3.6.1.1 3.6.1 3.6.0.1 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 All 130 releases
jetformbuilder / compatibility / compatibility-controller.php

compatibility-controller.php in JetFormBuilder — Dynamic Blocks Form Builder 3.5.3, at compatibility/compatibility-controller.php

34 lines 706 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3
4 namespace JFB_Compatibility;
5
6 use JFB_Components\Module\Module_Controller_Trait;
7 use JFB_Components\Module\Module_Controller_It;
8
9 // If this file is called directly, abort.
10 if ( ! defined( 'WPINC' ) ) {
11 die;
12 }
13
14 class Compatibility_Controller implements Module_Controller_It {
15
16 use Module_Controller_Trait;
17
18 public function rep_instances(): array {
19 return array(
20 new Litespeed\Litespeed(),
21 new Woocommerce\Woocommerce(),
22 new Elementor\Elementor(),
23 new Bricks\Bricks(),
24 new Jet_Engine\Jet_Engine(),
25 new Jet_Appointment\Jet_Appointment(),
26 new Jet_Booking\Jet_Booking(),
27 new Polylang\Polylang(),
28 new Wpml\Wpml(),
29 new Jet_Style_Manager\Jet_Style_Manager(),
30 );
31 }
32
33 }
34