PluginProbe
Elementor Website Builder – more than just a page builder / 3.35.0-dev4
Elementor Website Builder – more than just a page builder v3.35.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 | modules/home/module.php +36 -14 4.2.13.35.0-dev4 View file →
@@ -1,9 +1,13 @@
1 1 <?php
2 2 namespace Elementor\Modules\Home;
3 3
4 +use Elementor\Core\Admin\Menu\Admin_Menu_Manager;
4 5 use Elementor\Core\Base\App as BaseApp;
6 +use Elementor\Core\Experiments\Manager as Experiments_Manager;
5 7 use Elementor\Includes\EditorAssetsAPI;
8 +use Elementor\Settings;
9 +use Elementor\Plugin;
6 10 use Elementor\Utils;
7 11
8 12 if ( ! defined( 'ABSPATH' ) ) {
9 13 exit; // Exit if accessed directly.
@@ -19,27 +23,25 @@
19 23
20 24 public function __construct() {
21 25 parent::__construct();
22 26
27 + if ( ! $this->is_experiment_active() ) {
28 + return;
29 + }
30 +
31 + add_action( 'elementor/admin/menu/after_register', function ( Admin_Menu_Manager $admin_menu, array $hooks ) {
32 + $hook_suffix = 'toplevel_page_elementor';
33 + add_action( "admin_print_scripts-{$hook_suffix}", [ $this, 'enqueue_home_screen_scripts' ] );
34 + }, 10, 2 );
35 +
23 36 add_filter( 'elementor/document/urls/edit', [ $this, 'add_active_document_to_edit_link' ] );
24 37 }
25 38
26 - public function enqueue_fonts(): void {
27 - wp_enqueue_style(
28 - 'elementor-home-screen-fonts',
29 - 'https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap',
30 - [],
31 - ELEMENTOR_VERSION
32 - );
33 - }
34 -
35 39 public function enqueue_home_screen_scripts(): void {
36 40 if ( ! current_user_can( 'manage_options' ) ) {
37 41 return;
38 42 }
39 43
40 - $this->enqueue_fonts();
41 -
42 44 $min_suffix = Utils::is_script_debug() ? '' : '.min';
43 45
44 46 wp_enqueue_script(
45 47 'e-home-screen',
@@ -61,8 +63,12 @@
61 63 'elementorHomeScreenData',
62 64 $this->get_app_js_config()
63 65 );
64 66
67 + if ( ! Plugin::$instance->experiments->is_feature_active( 'e_editor_one' ) ) {
68 + return;
69 + }
70 +
65 71 wp_enqueue_style(
66 72 'e-home-screen',
67 73 $this->get_css_assets_url( 'modules/home/e-home-screen' ),
68 74 [],
@@ -69,8 +75,12 @@
69 75 ELEMENTOR_VERSION
70 76 );
71 77 }
72 78
79 + public function is_experiment_active(): bool {
80 + return Plugin::$instance->experiments->is_feature_active( self::PAGE_ID );
81 + }
82 +
73 83 public function add_active_document_to_edit_link( $edit_link ) {
74 84 $active_document = Utils::get_super_global_value( $_GET, 'active-document' ) ?? null;
75 85 $active_tab = Utils::get_super_global_value( $_GET, 'active-tab' ) ?? null;
76 86
@@ -84,16 +94,26 @@
84 94
85 95 return $edit_link;
86 96 }
87 97
98 + public static function get_experimental_data(): array {
99 + return [
100 + 'name' => static::PAGE_ID,
101 + 'title' => esc_html__( 'Elementor Home Screen', 'elementor' ),
102 + 'description' => esc_html__( 'Default Elementor menu page.', 'elementor' ),
103 + 'hidden' => true,
104 + 'release_status' => Experiments_Manager::RELEASE_STATUS_STABLE,
105 + 'default' => Experiments_Manager::STATE_ACTIVE,
106 + ];
107 + }
108 +
88 109 private function get_app_js_config(): array {
89 110 $editor_assets_api = new EditorAssetsAPI( $this->get_api_config() );
90 111 $api = new API( $editor_assets_api );
91 112
92 113 $config = $api->get_home_screen_items();
114 + $config['isEditorOneActive'] = Plugin::$instance->experiments->is_feature_active( 'e_editor_one' );
93 115
94 - $config['wpRestNonce'] = wp_create_nonce( 'wp_rest' );
95 -
96 116 return $config;
97 117 }
98 118
99 119 private function get_api_config(): array {
@@ -104,7 +124,9 @@
104 124 ];
105 125 }
106 126
107 127 public static function get_elementor_settings_page_id(): string {
108 - return 'elementor-settings';
128 + return Plugin::$instance->experiments->is_feature_active( self::PAGE_ID )
129 + ? 'elementor-settings'
130 + : Settings::PAGE_ID;
109 131 }
110 132 }