PluginProbe
Elementor Website Builder – more than just a page builder / 4.3.0-beta1
Elementor Website Builder – more than just a page builder v4.3.0-beta1
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
elementor / elementor.php

elementor.php in Elementor Website Builder – more than just a page builder 4.3.0-beta1, at elementor.php

125 lines 4.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
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!
5 * Plugin URI: https://elementor.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash
6 * Version: 4.3.0-beta1
7 * Author: Elementor.com
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
11 * Text Domain: elementor
12 *
13 * @package Elementor
14 * @category Core
15 *
16 * Elementor is free software: you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License as published by
18 * the Free Software Foundation, either version 3 of the License, or
19 * any later version.
20 *
21 * Elementor is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
25 */
26
27 if ( ! defined( 'ABSPATH' ) ) {
28 exit; // Exit if accessed directly.
29 }
30
31 define( 'ELEMENTOR_VERSION', '4.3.0-beta1' );
32 define( 'ELEMENTOR_MINIMUM_WP_VERSION', '6.8' );
33
34 define( 'ELEMENTOR__FILE__', __FILE__ );
35 define( 'ELEMENTOR_PLUGIN_BASE', plugin_basename( ELEMENTOR__FILE__ ) );
36 define( 'ELEMENTOR_PATH', plugin_dir_path( ELEMENTOR__FILE__ ) );
37
38 if ( defined( 'ELEMENTOR_TESTS' ) && ELEMENTOR_TESTS ) {
39 define( 'ELEMENTOR_URL', 'file://' . ELEMENTOR_PATH );
40 } else {
41 define( 'ELEMENTOR_URL', plugins_url( '/', ELEMENTOR__FILE__ ) );
42 }
43
44 define( 'ELEMENTOR_MODULES_PATH', plugin_dir_path( ELEMENTOR__FILE__ ) . '/modules' );
45 define( 'ELEMENTOR_ASSETS_PATH', ELEMENTOR_PATH . 'assets/' );
46 define( 'ELEMENTOR_ASSETS_URL', ELEMENTOR_URL . 'assets/' );
47
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_packages.php' ) ) {
53 require_once ELEMENTOR_PATH . 'vendor/autoload_packages.php';
54 } elseif ( file_exists( ELEMENTOR_PATH . 'vendor/autoload.php' ) ) {
55 require_once ELEMENTOR_PATH . 'vendor/autoload.php';
56 // We need this file because of the DI\create function that we are using.
57 // Autoload classmap doesn't include this file.
58 }
59
60 $deprecation_func_file = ELEMENTOR_PATH . 'vendor_prefixed/twig/symfony/deprecation-contracts/function.php';
61 if ( file_exists( $deprecation_func_file ) ) {
62 require_once $deprecation_func_file;
63 if ( ! function_exists( 'trigger_deprecation' ) ) {
64 function trigger_deprecation( string $package, string $version, string $message, ...$args ): void {
65 \ElementorDeps\trigger_deprecation( $package, $version, $message, ...$args );
66 }
67 }
68 }
69
70 if ( ! version_compare( PHP_VERSION, '7.4', '>=' ) ) {
71 add_action( 'admin_notices', 'elementor_fail_php_version' );
72 } elseif ( ! version_compare( get_bloginfo( 'version' ), ELEMENTOR_MINIMUM_WP_VERSION, '>=' ) ) {
73 add_action( 'admin_notices', 'elementor_fail_wp_version' );
74 } else {
75 require ELEMENTOR_PATH . 'includes/plugin.php';
76 }
77
78 /**
79 * Elementor admin notice for minimum PHP version.
80 *
81 * Warning when the site doesn't have the minimum required PHP version.
82 *
83 * @since 1.0.0
84 *
85 * @return void
86 */
87 function elementor_fail_php_version() {
88 $html_message = sprintf(
89 '<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>',
90 esc_html__( 'Elementor isn’t running because PHP is outdated.', 'elementor' ),
91 sprintf(
92 /* translators: %s: PHP version. */
93 esc_html__( 'Update to version %s and get back to creating!', 'elementor' ),
94 '7.4'
95 ),
96 esc_html__( 'Show me how', 'elementor' )
97 );
98
99 echo wp_kses_post( $html_message );
100 }
101
102 /**
103 * Elementor admin notice for minimum WordPress version.
104 *
105 * Warning when the site doesn't have the minimum required WordPress version.
106 *
107 * @since 1.5.0
108 *
109 * @return void
110 */
111 function elementor_fail_wp_version() {
112 $html_message = sprintf(
113 '<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>',
114 esc_html__( 'Elementor isn’t running because WordPress is outdated.', 'elementor' ),
115 sprintf(
116 /* translators: %s: WordPress version. */
117 esc_html__( 'Update to version %s and get back to creating!', 'elementor' ),
118 ELEMENTOR_MINIMUM_WP_VERSION
119 ),
120 esc_html__( 'Show me how', 'elementor' )
121 );
122
123 echo wp_kses_post( $html_message );
124 }
125