PluginProbe
Elementor Website Builder – more than just a page builder / 3.22.0-dev4
Elementor Website Builder – more than just a page builder v3.22.0-dev4
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 | elementor.php +6 -28 4.2.0-dev23.22.0-dev4 View file →
@@ -1,14 +1,13 @@
1 1 <?php
2 2 /**
3 3 * Plugin Name: Elementor
4 - * Description: The Elementor Website Builder has it all: drag and drop page builder, Atomic Editor, pixel perfect design, global and reusable style systems, mobile responsive editing, and more. Get started now!
4 + * Description: The Elementor Website Builder has it all: drag and drop page builder, pixel perfect design, mobile responsive editing, and more. Get started now!
5 5 * Plugin URI: https://elementor.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash
6 - * Version: 4.2.0-dev2
7 6 * Author: Elementor.com
7 + * Version: 3.22.0-dev4
8 8 * Author URI: https://elementor.com/?utm_source=wp-plugins&utm_campaign=author-uri&utm_medium=wp-dash
9 - * Requires PHP: 7.4
10 - * Requires at least: 6.8
9 + *
11 10 * Text Domain: elementor
12 11 *
13 12 * @package Elementor
14 13 * @category Core
@@ -27,10 +26,9 @@
27 26 if ( ! defined( 'ABSPATH' ) ) {
28 27 exit; // Exit if accessed directly.
29 28 }
30 29
31 -define( 'ELEMENTOR_VERSION', '4.2.0-dev2' );
32 -define( 'ELEMENTOR_MINIMUM_WP_VERSION', '6.8' );
30 +define( 'ELEMENTOR_VERSION', '3.22.0-dev4' );
33 31
34 32 define( 'ELEMENTOR__FILE__', __FILE__ );
35 33 define( 'ELEMENTOR_PLUGIN_BASE', plugin_basename( ELEMENTOR__FILE__ ) );
36 34 define( 'ELEMENTOR_PATH', plugin_dir_path( ELEMENTOR__FILE__ ) );
@@ -44,31 +42,11 @@
44 42 define( 'ELEMENTOR_MODULES_PATH', plugin_dir_path( ELEMENTOR__FILE__ ) . '/modules' );
45 43 define( 'ELEMENTOR_ASSETS_PATH', ELEMENTOR_PATH . 'assets/' );
46 44 define( 'ELEMENTOR_ASSETS_URL', ELEMENTOR_URL . 'assets/' );
47 45
48 -if ( ! defined( 'ELEMENTOR_EDITOR_EVENTS_MIXPANEL_TOKEN' ) ) {
49 - define( 'ELEMENTOR_EDITOR_EVENTS_MIXPANEL_TOKEN', '150605b3b9f979922f2ac5a52e2dcfe9' );
50 -}
51 -
52 -if ( file_exists( ELEMENTOR_PATH . 'vendor/autoload.php' ) ) {
53 - require_once ELEMENTOR_PATH . 'vendor/autoload.php';
54 - // We need this file because of the DI\create function that we are using.
55 - // Autoload classmap doesn't include this file.
56 -}
57 -
58 -$deprecation_func_file = ELEMENTOR_PATH . 'vendor_prefixed/twig/symfony/deprecation-contracts/function.php';
59 -if ( file_exists( $deprecation_func_file ) ) {
60 - require_once $deprecation_func_file;
61 - if ( ! function_exists( 'trigger_deprecation' ) ) {
62 - function trigger_deprecation( string $package, string $version, string $message, ...$args ): void {
63 - \ElementorDeps\trigger_deprecation( $package, $version, $message, ...$args );
64 - }
65 - }
66 -}
67 -
68 46 if ( ! version_compare( PHP_VERSION, '7.4', '>=' ) ) {
69 47 add_action( 'admin_notices', 'elementor_fail_php_version' );
70 -} elseif ( ! version_compare( get_bloginfo( 'version' ), ELEMENTOR_MINIMUM_WP_VERSION, '>=' ) ) {
48 +} elseif ( ! version_compare( get_bloginfo( 'version' ), '6.0', '>=' ) ) {
71 49 add_action( 'admin_notices', 'elementor_fail_wp_version' );
72 50 } else {
73 51 require ELEMENTOR_PATH . 'includes/plugin.php';
74 52 }
@@ -112,9 +90,9 @@
112 90 esc_html__( 'Elementor isn’t running because WordPress is outdated.', 'elementor' ),
113 91 sprintf(
114 92 /* translators: %s: WordPress version. */
115 93 esc_html__( 'Update to version %s and get back to creating!', 'elementor' ),
116 - ELEMENTOR_MINIMUM_WP_VERSION
94 + '6.0'
117 95 ),
118 96 esc_html__( 'Show me how', 'elementor' )
119 97 );
120 98