PluginProbe ʕ •ᴥ•ʔ
JetFormBuilder — Dynamic Blocks Form Builder / 3.5.2.1
JetFormBuilder — Dynamic Blocks Form Builder v3.5.2.1
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 9 months ago active-campaign 11 months ago admin 1 year ago advanced-choices 1 year ago ai 1 year ago block-parsers 11 months ago blocks-v2 9 months ago bulk-options 2 years ago captcha 11 months ago cli 2 years ago components 11 months ago data 11 months ago deprecated 2 years ago dev 2 years ago fields-render-validator 1 year ago form-record 1 year ago framework 2 years ago gateways 9 months ago html-parser 11 months ago jet-plugins 2 years ago jet-style 1 year ago jobs 2 years ago logger 2 years ago onboarding 11 months ago option-field 11 months ago option-query 2 years ago post-type 11 months ago promo-banner 1 year ago rest-api 2 years ago rich-content 2 years ago sanitize-value 2 years ago security 1 year ago shortcode 11 months ago switch-page-on-change 2 years ago switcher 1 year ago user-journey 1 year ago validation 11 months ago verification 11 months ago webhook 2 years ago wp-experiments 2 years ago wysiwyg 1 year ago modules-controller.php 1 year ago
modules-controller.php
69 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 class Modules_Controller implements Module_Controller_It {
16
17 use Module_Controller_Trait;
18
19 public function rep_instances(): array {
20 // backward compatibility
21 require_once jet_form_builder()->plugin_dir( 'modules/gateways/legacy/gateway-manager.php' );
22
23 return array(
24 // core required modules
25 new Components\Module(),
26 new Data\Module(),
27 new Jobs\Module(),
28 new Jet_Plugins\Module(),
29 new Logger\Module(),
30 new Dev\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 Blocks_V2\Module(),
39 new Security\Module(),
40 new Rich_Content\Module(),
41 new Actions_V2\Module(),
42 // additional
43 new Shortcode\Module(),
44 new Option_Field\Module(),
45 new Wp_Experiments\Module(),
46 new Deprecated\Module(),
47 new Jet_Style\Module(),
48 new Switch_Page_On_Change\Module(),
49 new Form_Record\Module(),
50 new Advanced_Choices\Module(),
51 new Captcha\Module(),
52 new Gateway_Manager(),
53 new Active_Campaign\Module(),
54 new Verification\Module(),
55 new Sanitize_Value\Module(),
56 new Onboarding\Module(),
57 new Html_Parser\Module(),
58 new Ai\Module(),
59 new Validation\Module(),
60 new Wysiwyg\Module(),
61 new Switcher\Module(),
62 new Promo_Banner\Module(),
63 new Fields_Render_Validator\Module(),
64 new User_Journey\Module(),
65 );
66 }
67
68 }
69