PluginProbe ʕ •ᴥ•ʔ
JetFormBuilder — Dynamic Blocks Form Builder / 3.3.2
JetFormBuilder — Dynamic Blocks Form Builder v3.3.2
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 1.1.6 1.1.7 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.3.0 1.3.1 1.3.2 1.3.3 1.4.0 1.4.1 1.4.2 1.4.3 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.1.0 2.1.1 2.1.10 2.1.11 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 3.0.0 3.0.0.1 3.0.0.2 3.0.0.3 3.0.1 3.0.1.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.0.1 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.1.8 3.1.9 3.2.0 3.2.1 3.2.2 3.2.3 3.3.0 3.3.1 3.3.2 3.3.3 3.3.3.1 3.3.4 3.3.4.1 3.3.4.2 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.4.5.1 3.4.5.2 3.4.6 3.4.7 3.4.7.1 3.5.0 3.5.1 3.5.1.1 3.5.1.2 3.5.2 3.5.2.1 3.5.3 3.5.4 3.5.5 3.5.6 3.5.6.1 3.5.6.2 3.5.6.3 3.6.0
jetformbuilder / modules / modules-controller.php
jetformbuilder / modules Last commit date
active-campaign 2 years ago admin 2 years ago advanced-choices 2 years ago ai 2 years ago block-parsers 2 years ago bulk-options 2 years ago captcha 2 years ago cli 2 years ago deprecated 2 years ago dev 2 years ago form-record 2 years ago framework 2 years ago gateways 2 years ago html-parser 2 years ago jet-plugins 2 years ago jet-style 2 years ago jobs 2 years ago logger 2 years ago onboarding 2 years ago option-field 2 years ago option-query 2 years ago post-type 2 years ago rest-api 2 years ago rich-content 2 years ago sanitize-value 2 years ago security 2 years ago shortcode 2 years ago switch-page-on-change 2 years ago switcher 2 years ago validation 2 years ago verification 2 years ago webhook 2 years ago wp-experiments 2 years ago wysiwyg 2 years ago modules-controller.php 2 years ago
modules-controller.php
64 lines
1 <?php
2
3
4 namespace JFB_Modules;
5
6 // If this file is called directly, abort.
7 if ( ! defined( 'WPINC' ) ) {
8 die;
9 }
10
11 use Jet_Form_Builder\Blocks;
12 use JFB_Components\Module\Module_Controller_It;
13 use JFB_Components\Module\Module_Controller_Trait;
14 use Jet_Form_Builder\Gateways\Gateway_Manager;
15
16 class Modules_Controller implements Module_Controller_It {
17
18 use Module_Controller_Trait;
19
20 public function rep_instances(): array {
21 // backward compatibility
22 require_once jet_form_builder()->plugin_dir( 'modules/gateways/legacy/gateway-manager.php' );
23
24 return array(
25 // core required modules
26 new Jobs\Module(),
27 new Jet_Plugins\Module(),
28 new Logger\Module(),
29 new Dev\Module(),
30 new Admin\Module(),
31 new Post_Type\Module(),
32 new Bulk_Options\Module(),
33 new Block_Parsers\Module(),
34 new Webhook\Module(),
35 new Rest_Api\Module(),
36 new Option_Query\Module(),
37 new Blocks\Module(),
38 new Security\Module(),
39 new Rich_Content\Module(),
40 // additional
41 new Shortcode\Module(),
42 new Option_Field\Module(),
43 new Wp_Experiments\Module(),
44 new Deprecated\Module(),
45 new Jet_Style\Module(),
46 new Switch_Page_On_Change\Module(),
47 new Form_Record\Module(),
48 new Advanced_Choices\Module(),
49 new Captcha\Module(),
50 new Gateway_Manager(),
51 new Active_Campaign\Module(),
52 new Verification\Module(),
53 new Sanitize_Value\Module(),
54 new Onboarding\Module(),
55 new Html_Parser\Module(),
56 new Ai\Module(),
57 new Validation\Module(),
58 new Wysiwyg\Module(),
59 new Switcher\Module(),
60 );
61 }
62
63 }
64