PluginProbe
Elementor Website Builder – more than just a page builder / 3.0.13
Elementor Website Builder – more than just a page builder v3.0.13
4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 4.0.7 All 451 releases
← All changes | core/modules-manager.php +0 -66 4.1.23.0.13 View file →
@@ -1,9 +1,8 @@
1 1 <?php
2 2 namespace Elementor\Core;
3 3
4 4 use Elementor\Core\Base\Module;
5 -use Elementor\Plugin;
6 5
7 6 if ( ! defined( 'ABSPATH' ) ) {
8 7 exit; // Exit if accessed directly.
9 8 }
@@ -48,19 +47,8 @@
48 47
49 48 $class_name = $modules_namespace_prefix . '\\Modules\\' . $class_name . '\Module';
50 49
51 50 /** @var Module $class_name */
52 -
53 - $experimental_data = $class_name::get_experimental_data();
54 -
55 - if ( $experimental_data ) {
56 - Plugin::$instance->experiments->add_feature( $experimental_data );
57 -
58 - if ( ! Plugin::$instance->experiments->is_feature_active( $experimental_data['name'] ) ) {
59 - continue;
60 - }
61 - }
62 -
63 51 if ( $class_name::is_active() ) {
64 52 $this->modules[ $module_name ] = $class_name::instance();
65 53 }
66 54 }
@@ -84,64 +72,10 @@
84 72 'dynamic-tags',
85 73 'page-templates',
86 74 'gutenberg',
87 75 'wp-cli',
88 - 'mcp',
89 - 'wp-rest',
90 76 'safe-mode',
91 - 'ai',
92 - 'notifications',
93 77 'usage',
94 - 'dev-tools',
95 - 'landing-pages',
96 - 'compatibility-tag',
97 - 'generator-tag',
98 - 'elements-color-picker',
99 - 'elementor-counter',
100 - 'shapes',
101 - 'favorites',
102 - 'admin-top-bar',
103 - 'element-manager',
104 - 'pro-free-trial-popup',
105 - 'nested-elements',
106 - // Depends on Nested Elements module
107 - 'nested-tabs',
108 - 'nested-accordion',
109 - 'container-converter',
110 - 'web-cli',
111 - 'promotions',
112 - 'pro-install',
113 - 'notes',
114 - 'performance-lab',
115 - 'lazyload',
116 - 'image-loading-optimization',
117 - 'kit-elements-defaults',
118 - 'announcements',
119 - 'editor-app-bar',
120 - 'site-navigation',
121 - 'styleguide',
122 - 'element-cache',
123 - 'apps',
124 - 'home',
125 - 'link-in-bio',
126 - 'floating-buttons',
127 - 'content-sanitizer',
128 - 'atomic-widgets',
129 - 'global-classes',
130 - 'variables',
131 - 'design-system-sync',
132 - 'wc-product-editor',
133 - 'checklist',
134 - 'cloud-library',
135 - 'cloud-kit-library',
136 - 'atomic-opt-in',
137 - 'components',
138 - 'interactions',
139 - 'feedback',
140 - 'widget-creation',
141 - 'editor-one',
142 - 'markdown-render',
143 - 'elementor-capabilities-mcp',
144 78 ];
145 79 }
146 80
147 81 /**