PluginProbe
Elementor Website Builder – more than just a page builder / 3.6.3
Elementor Website Builder – more than just a page builder v3.6.3
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/common/app.php +6 -46 4.2.23.6.3 View file →
@@ -5,13 +5,10 @@
5 5 use Elementor\Core\Common\Modules\Ajax\Module as Ajax;
6 6 use Elementor\Core\Common\Modules\Finder\Module as Finder;
7 7 use Elementor\Core\Common\Modules\Connect\Module as Connect;
8 8 use Elementor\Core\Common\Modules\EventTracker\Module as Event_Tracker;
9 -use Elementor\Core\Common\Modules\EventsManager\Module as Events_Manager;
10 9 use Elementor\Core\Files\Uploads_Manager;
11 -use Elementor\Icons_Manager;
12 10 use Elementor\Plugin;
13 -use Elementor\Utils;
14 11
15 12 if ( ! defined( 'ABSPATH' ) ) {
16 13 exit; // Exit if accessed directly.
17 14 }
@@ -35,11 +32,11 @@
35 32 */
36 33 public function __construct() {
37 34 $this->add_default_templates();
38 35
39 - add_action( 'elementor/editor/before_enqueue_scripts', [ $this, 'register_scripts' ], 9 );
40 - add_action( 'admin_enqueue_scripts', [ $this, 'register_scripts' ], 9 );
41 - add_action( 'wp_enqueue_scripts', [ $this, 'register_scripts' ], 9 );
36 + add_action( 'elementor/editor/before_enqueue_scripts', [ $this, 'register_scripts' ] );
37 + add_action( 'admin_enqueue_scripts', [ $this, 'register_scripts' ] );
38 + add_action( 'wp_enqueue_scripts', [ $this, 'register_scripts' ] );
42 39
43 40 add_action( 'elementor/editor/before_enqueue_styles', [ $this, 'register_styles' ] );
44 41 add_action( 'admin_enqueue_scripts', [ $this, 'register_styles' ] );
45 42 add_action( 'wp_enqueue_scripts', [ $this, 'register_styles' ], 9 );
@@ -68,14 +65,8 @@
68 65
69 66 $this->add_component( 'connect', new Connect() );
70 67
71 68 $this->add_component( 'event-tracker', new Event_Tracker() );
72 -
73 - Plugin::$instance->experiments->add_feature( Events_Manager::get_experimental_data() );
74 -
75 - if ( Plugin::$instance->experiments->is_feature_active( Events_Manager::EXPERIMENT_NAME ) ) {
76 - $this->add_component( 'events-manager', new Events_Manager() );
77 - }
78 69 }
79 70
80 71 /**
81 72 * Get name.
@@ -100,24 +91,11 @@
100 91 * @access public
101 92 */
102 93 public function register_scripts() {
103 94 wp_register_script(
104 - 'elementor-vendors-redux',
105 - $this->get_js_assets_url( 'vendors-redux' ),
106 - [
107 - 'react',
108 - 'react-dom',
109 - ],
110 - ELEMENTOR_VERSION,
111 - true
112 - );
113 -
114 - wp_register_script(
115 95 'elementor-common-modules',
116 96 $this->get_js_assets_url( 'common-modules' ),
117 - [
118 - 'elementor-vendors-redux',
119 - ],
97 + [],
120 98 ELEMENTOR_VERSION,
121 99 true
122 100 );
123 101
@@ -162,9 +140,8 @@
162 140 'elementor-common-modules',
163 141 'elementor-web-cli',
164 142 'elementor-dialog',
165 143 'wp-api-request',
166 - 'elementor-dev-tools',
167 144 ],
168 145 ELEMENTOR_VERSION,
169 146 true
170 147 );
@@ -189,9 +166,9 @@
189 166 wp_register_style(
190 167 'elementor-icons',
191 168 $this->get_css_assets_url( 'elementor-icons', 'assets/lib/eicons/css/' ),
192 169 [],
193 - Icons_Manager::ELEMENTOR_ICONS_VERSION
170 + '5.15.0'
194 171 );
195 172
196 173 wp_enqueue_style(
197 174 'elementor-common',
@@ -200,15 +177,8 @@
200 177 'elementor-icons',
201 178 ],
202 179 ELEMENTOR_VERSION
203 180 );
204 -
205 - wp_enqueue_style(
206 - 'e-theme-ui-light',
207 - $this->get_css_assets_url( 'theme-light' ),
208 - [],
209 - ELEMENTOR_VERSION
210 - );
211 181 }
212 182
213 183 /**
214 184 * Add template.
@@ -258,26 +228,18 @@
258 228 * @return array
259 229 */
260 230 protected function get_init_settings() {
261 231 $active_experimental_features = Plugin::$instance->experiments->get_active_features();
262 - $all_experimental_features = Plugin::$instance->experiments->get_features();
263 232
264 233 $active_experimental_features = array_fill_keys( array_keys( $active_experimental_features ), true );
265 - $all_experimental_features = array_map(
266 - function( $feature ) {
267 - return Plugin::$instance->experiments->is_feature_active( $feature['name'] );
268 - },
269 - $all_experimental_features
270 - );
271 234
272 235 $config = [
273 236 'version' => ELEMENTOR_VERSION,
274 237 'isRTL' => is_rtl(),
275 238 'isDebug' => ( defined( 'WP_DEBUG' ) && WP_DEBUG ),
276 - 'isElementorDebug' => Utils::is_elementor_debug(),
239 + 'isElementorDebug' => ( defined( 'ELEMENTOR_DEBUG' ) && ELEMENTOR_DEBUG ),
277 240 'activeModules' => array_keys( $this->get_components() ),
278 241 'experimentalFeatures' => $active_experimental_features,
279 - 'allExperimentalFeatures' => $all_experimental_features,
280 242 'urls' => [
281 243 'assets' => ELEMENTOR_ASSETS_URL,
282 244 'rest' => get_rest_url(),
283 245 ],
@@ -283,9 +245,8 @@
283 245 ],
284 246 'filesUpload' => [
285 247 'unfilteredFiles' => Uploads_Manager::are_unfiltered_uploads_enabled(),
286 248 ],
287 - 'editor_events' => Events_Manager::get_editor_events_config(),
288 249 ];
289 250
290 251 /**
291 252 * Localize common settings.
@@ -302,9 +263,8 @@
302 263 /**
303 264 * Add default templates.
304 265 *
305 266 * Register common app default templates.
306 - *
307 267 * @since 2.3.0
308 268 * @access private
309 269 */
310 270 private function add_default_templates() {