PluginProbe ʕ •ᴥ•ʔ
JetFormBuilder — Dynamic Blocks Form Builder / 3.6.3
JetFormBuilder — Dynamic Blocks Form Builder v3.6.3
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 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
actions-v2 2 months ago active-campaign 3 months ago admin 3 months ago advanced-choices 3 months ago ai 3 months ago block-parsers 1 year ago blocks-v2 2 months ago bulk-options 2 years ago captcha 3 months ago cli 2 years ago components 3 months ago data 3 months ago deprecated 2 years ago dev 2 years ago fields-render-validator 1 year ago form-record 3 months ago framework 4 months ago gateways 3 months ago html-parser 2 months ago jet-plugins 3 months ago jet-style 3 months ago jobs 2 years ago logger 2 years ago macros-inserter 2 months ago media-cleanup 2 months ago multi-gateway 3 months ago onboarding 2 months ago option-field 2 months ago option-query 8 months ago post-type 4 months ago promo-banner 3 months ago rest-api 2 years ago rich-content 2 years ago sanitize-value 2 months ago security 2 months ago shortcode 3 months ago switch-page-on-change 3 months ago switcher 3 months ago user-journey 3 months ago validation 2 months ago verification 3 months ago webhook 2 years ago wp-experiments 2 years ago wysiwyg 2 months ago modules-controller.php 2 months ago
modules-controller.php
73 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 Components\Module(),
27 new Data\Module(),
28 new Jobs\Module(),
29 new Jet_Plugins\Module(),
30 new Logger\Module(),
31 new Dev\Module(),
32 new Post_Type\Module(),
33 new Bulk_Options\Module(),
34 new Block_Parsers\Module(),
35 new Webhook\Module(),
36 new Rest_Api\Module(),
37 new Option_Query\Module(),
38 new Blocks\Module(),
39 new Blocks_V2\Module(),
40 new Security\Module(),
41 new Rich_Content\Module(),
42 new Actions_V2\Module(),
43 // additional
44 new Shortcode\Module(),
45 new Option_Field\Module(),
46 new Wp_Experiments\Module(),
47 new Deprecated\Module(),
48 new Jet_Style\Module(),
49 new Switch_Page_On_Change\Module(),
50 new Form_Record\Module(),
51 new Advanced_Choices\Module(),
52 new Captcha\Module(),
53 new Gateway_Manager(),
54 new Active_Campaign\Module(),
55 new Verification\Module(),
56 new Sanitize_Value\Module(),
57 new Onboarding\Module(),
58 new Html_Parser\Module(),
59 new Ai\Module(),
60 new Validation\Module(),
61 new Wysiwyg\Module(),
62 new Switcher\Module(),
63 new Promo_Banner\Module(),
64 new Fields_Render_Validator\Module(),
65 new User_Journey\Module(),
66 new Multi_Gateway\Module(),
67 new Macros_Inserter\Module(),
68 new Media_Cleanup\Module(),
69 );
70 }
71
72 }
73