| @@ -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.2 | |
| 7 | 6 | * Author: Elementor.com |
| 7 | + * Version: 3.2.4 | |
| 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,10 @@ | ||
| 27 | 26 | if ( ! defined( 'ABSPATH' ) ) { |
| 28 | 27 | exit; // Exit if accessed directly. |
| 29 | 28 | } |
| 30 | 29 | |
| 31 | -define( 'ELEMENTOR_VERSION', '4.2.2' ); | |
| 32 | -define( 'ELEMENTOR_MINIMUM_WP_VERSION', '6.8' ); | |
| 30 | +define( 'ELEMENTOR_VERSION', '3.2.4' ); | |
| 31 | +define( 'ELEMENTOR_PREVIOUS_STABLE_VERSION', '3.1.4' ); | |
| 33 | 32 | |
| 34 | 33 | define( 'ELEMENTOR__FILE__', __FILE__ ); |
| 35 | 34 | define( 'ELEMENTOR_PLUGIN_BASE', plugin_basename( ELEMENTOR__FILE__ ) ); |
| 36 | 35 | define( 'ELEMENTOR_PATH', plugin_dir_path( ELEMENTOR__FILE__ ) ); |
| @@ -44,31 +43,13 @@ | ||
| 44 | 43 | define( 'ELEMENTOR_MODULES_PATH', plugin_dir_path( ELEMENTOR__FILE__ ) . '/modules' ); |
| 45 | 44 | define( 'ELEMENTOR_ASSETS_PATH', ELEMENTOR_PATH . 'assets/' ); |
| 46 | 45 | define( 'ELEMENTOR_ASSETS_URL', ELEMENTOR_URL . 'assets/' ); |
| 47 | 46 | |
| 48 | -if ( ! defined( 'ELEMENTOR_EDITOR_EVENTS_MIXPANEL_TOKEN' ) ) { | |
| 49 | - define( 'ELEMENTOR_EDITOR_EVENTS_MIXPANEL_TOKEN', '150605b3b9f979922f2ac5a52e2dcfe9' ); | |
| 50 | -} | |
| 47 | +add_action( 'plugins_loaded', 'elementor_load_plugin_textdomain' ); | |
| 51 | 48 | |
| 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 | -if ( ! version_compare( PHP_VERSION, '7.4', '>=' ) ) { | |
| 49 | +if ( ! version_compare( PHP_VERSION, '5.6', '>=' ) ) { | |
| 69 | 50 | add_action( 'admin_notices', 'elementor_fail_php_version' ); |
| 70 | -} elseif ( ! version_compare( get_bloginfo( 'version' ), ELEMENTOR_MINIMUM_WP_VERSION, '>=' ) ) { | |
| 51 | +} elseif ( ! version_compare( get_bloginfo( 'version' ), '5.2', '>=' ) ) { | |
| 71 | 52 | add_action( 'admin_notices', 'elementor_fail_wp_version' ); |
| 72 | 53 | } else { |
| 73 | 54 | require ELEMENTOR_PATH . 'includes/plugin.php'; |
| 74 | 55 | } |
| @@ -73,8 +54,21 @@ | ||
| 73 | 54 | require ELEMENTOR_PATH . 'includes/plugin.php'; |
| 74 | 55 | } |
| 75 | 56 | |
| 76 | 57 | /** |
| 58 | + * Load Elementor textdomain. | |
| 59 | + * | |
| 60 | + * Load gettext translate for Elementor text domain. | |
| 61 | + * | |
| 62 | + * @since 1.0.0 | |
| 63 | + * | |
| 64 | + * @return void | |
| 65 | + */ | |
| 66 | +function elementor_load_plugin_textdomain() { | |
| 67 | + load_plugin_textdomain( 'elementor' ); | |
| 68 | +} | |
| 69 | + | |
| 70 | +/** | |
| 77 | 71 | * Elementor admin notice for minimum PHP version. |
| 78 | 72 | * |
| 79 | 73 | * Warning when the site doesn't have the minimum required PHP version. |
| 80 | 74 | * |
| @@ -82,19 +76,11 @@ | ||
| 82 | 76 | * |
| 83 | 77 | * @return void |
| 84 | 78 | */ |
| 85 | 79 | function elementor_fail_php_version() { |
| 86 | - $html_message = sprintf( | |
| 87 | - '<div class="error"><h3>%1$s</h3><p>%2$s <a href="https://go.elementor.com/wp-dash-update-php/" target="_blank">%3$s</a></p></div>', | |
| 88 | - esc_html__( 'Elementor isn’t running because PHP is outdated.', 'elementor' ), | |
| 89 | - sprintf( | |
| 90 | - /* translators: %s: PHP version. */ | |
| 91 | - esc_html__( 'Update to version %s and get back to creating!', 'elementor' ), | |
| 92 | - '7.4' | |
| 93 | - ), | |
| 94 | - esc_html__( 'Show me how', 'elementor' ) | |
| 95 | - ); | |
| 96 | - | |
| 80 | + /* translators: %s: PHP version */ | |
| 81 | + $message = sprintf( esc_html__( 'Elementor requires PHP version %s+, plugin is currently NOT RUNNING.', 'elementor' ), '5.6' ); | |
| 82 | + $html_message = sprintf( '<div class="error">%s</div>', wpautop( $message ) ); | |
| 97 | 83 | echo wp_kses_post( $html_message ); |
| 98 | 84 | } |
| 99 | 85 | |
| 100 | 86 | /** |
| @@ -106,17 +92,9 @@ | ||
| 106 | 92 | * |
| 107 | 93 | * @return void |
| 108 | 94 | */ |
| 109 | 95 | function elementor_fail_wp_version() { |
| 110 | - $html_message = sprintf( | |
| 111 | - '<div class="error"><h3>%1$s</h3><p>%2$s <a href="https://go.elementor.com/wp-dash-update-wordpress/" target="_blank">%3$s</a></p></div>', | |
| 112 | - esc_html__( 'Elementor isn’t running because WordPress is outdated.', 'elementor' ), | |
| 113 | - sprintf( | |
| 114 | - /* translators: %s: WordPress version. */ | |
| 115 | - esc_html__( 'Update to version %s and get back to creating!', 'elementor' ), | |
| 116 | - ELEMENTOR_MINIMUM_WP_VERSION | |
| 117 | - ), | |
| 118 | - esc_html__( 'Show me how', 'elementor' ) | |
| 119 | - ); | |
| 120 | - | |
| 96 | + /* translators: %s: WordPress version */ | |
| 97 | + $message = sprintf( esc_html__( 'Elementor requires WordPress version %s+. Because you are using an earlier version, the plugin is currently NOT RUNNING.', 'elementor' ), '5.2' ); | |
| 98 | + $html_message = sprintf( '<div class="error">%s</div>', wpautop( $message ) ); | |
| 121 | 99 | echo wp_kses_post( $html_message ); |
| 122 | 100 | } |