/var/www/html_us/wp-content/plugins/elementor/app/app.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
<?php
namespace Elementor\App;

use 
Elementor\App\AdminMenuItems\Theme_Builder_Menu_Item;
use 
Elementor\Core\Admin\Menu\Admin_Menu_Manager;
use 
Elementor\Modules\WebCli\Module as WebCLIModule;
use 
Elementor\Core\Base\App as BaseApp;
use 
Elementor\Core\Settings\Manager as SettingsManager;
use 
Elementor\Plugin;
use 
Elementor\TemplateLibrary\Source_Local;
use 
Elementor\User;
use 
Elementor\Utils;
use 
Elementor\Core\Utils\Promotions\Filtered_Promotions_Manager;

if ( ! 
defined'ABSPATH' ) ) {
    exit; 
// Exit if accessed directly.
}

class 
App extends BaseApp {

    const 
PAGE_ID 'elementor-app';

    
/**
     * Get module name.
     *
     * Retrieve the module name.
     *
     * @since 3.0.0
     * @access public
     *
     * @return string Module name.
     */
    
public function get_name() {
        return 
'app';
    }

    public function 
get_base_url() {
        return 
admin_url'admin.php?page=' self::PAGE_ID '&ver=' ELEMENTOR_VERSION );
    }

    private function 
register_admin_menuAdmin_Menu_Manager $admin_menu ) {
        
$admin_menu->register( static::PAGE_ID, new Theme_Builder_Menu_Item() );
    }

    public function 
fix_submenu$menu ) {
        global 
$submenu;

        if ( 
is_multisite() && is_network_admin() ) {
            return 
$menu;
        }

        
// Non admin role / custom wp menu.
        
if ( empty( $submenuSource_Local::ADMIN_MENU_SLUG ] ) ) {
            return 
$menu;
        }

        
// Hack to add a link to sub menu.
        
foreach ( $submenuSource_Local::ADMIN_MENU_SLUG ] as &$item ) {
            if ( 
self::PAGE_ID === $item[2] ) {
                
$item[2] = $this->get_settings'menu_url' ); // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
                
$item[4] = 'elementor-app-link'// phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
            
}
        }

        return 
$menu;
    }

    public function 
is_current() {
        return ( ! empty( 
$_GET['page'] ) && self::PAGE_ID === $_GET['page'] );
    }

    public function 
admin_init() {
        
do_action'elementor/app/init'$this );

        
// Add the introduction and user settings only when it is needed (when loading the app and not in the editor or admin pages)
        
$this->set_settings'user', [
            
'introduction' => (object) User::get_introduction_meta(),
            
'is_administrator' => current_user_can'manage_options' ),
            
'restrictions' => Plugin::$instance->role_manager->get_user_restrictions_array(),
        ] );

        
$this->enqueue_assets();

        
remove_action'wp_print_styles''print_emoji_styles' );

        
// Setup default heartbeat options
        // TODO: Enable heartbeat.
        
add_filter'heartbeat_settings', function( $settings ) {
            
$settings['interval'] = 15;
            return 
$settings;
        } );

        
$this->render();
        die;
    }

    protected function 
get_init_settings() {
        
$referer wp_get_referer();

        return [
            
'menu_url' => $this->get_base_url() . '#site-editor/promotion',
            
'assets_url' => ELEMENTOR_ASSETS_URL,
            
'pages_url' => admin_url'edit.php?post_type=page' ),
            
'return_url' => $referer $referer admin_url(),
            
'hasPro' => Utils::has_pro(),
            
'admin_url' => admin_url(),
            
'login_url' => wp_login_url(),
            
'base_url' => $this->get_base_url(),
            
'promotion' => Filtered_Promotions_Manager::get_filtered_promotion_data(
                [ 
'upgrade_url' => 'https://go.elementor.com/go-pro-theme-builder/' ],
                
'elementor/site-editor/promotion',
                
'upgrade_url'
            
),
        ];
    }

    private function 
render() {
        require 
__DIR__ '/view.php';
    }

    
/**
     * Get Elementor editor theme color preference.
     *
     * Retrieve the user theme color preference as defined by editor preferences manager.
     *
     * @since 3.0.0
     * @access private
     *
     * @return string Preferred editor theme.
     */
    
private function get_elementor_ui_theme_preference() {
        
$editor_preferences SettingsManager::get_settings_managers'editorPreferences' );

        return 
$editor_preferences->get_model()->get_settings'ui_theme' );
    }

    
/**
     * Enqueue dark theme detection script.
     *
     * Enqueues an inline script that detects user-agent settings for dark mode and adds a complimentary class to the body tag.
     *
     * @since 3.0.0
     * @access private
     */
    
private function enqueue_dark_theme_detection_script() {
        if ( 
'auto' === $this->get_elementor_ui_theme_preference() ) {
            
wp_add_inline_script'elementor-app',
                
'if ( window.matchMedia && window.matchMedia( `(prefers-color-scheme: dark)` ).matches )
                            { document.body.classList.add( `eps-theme-dark` ); }' 
);
        }
    }

    private function 
enqueue_assets() {
        
Plugin::$instance->init_common();

        
/** @var WebCLIModule $web_cli */
        
$web_cli Plugin::$instance->modules_manager->get_modules'web-cli' );
        
$web_cli->register_scripts();

        
Plugin::$instance->common->register_scripts();

        
wp_register_style(
            
'select2',
            
$this->get_css_assets_url'e-select2''assets/lib/e-select2/css/' ),
            [],
            
'4.0.6-rc.1'
        
);

        
Plugin::$instance->common->register_styles();

        
wp_register_style(
            
'select2',
            
ELEMENTOR_ASSETS_URL 'lib/e-select2/css/e-select2.css',
            [],
            
'4.0.6-rc.1'
        
);

        
wp_enqueue_style(
            
'elementor-app',
            
$this->get_css_assets_url'app'null'default'true ),
            [
                
'select2',
                
'elementor-icons',
                
'elementor-common',
                
'select2',
            ],
            
ELEMENTOR_VERSION
        
);

        
wp_enqueue_script(
            
'elementor-app-packages',
            
$this->get_js_assets_url'app-packages' ),
            [
                
'wp-i18n',
                
'react',
            ],
            
ELEMENTOR_VERSION,
            
true
        
);

        
wp_register_script(
            
'select2',
            
$this->get_js_assets_url'e-select2.full''assets/lib/e-select2/js/' ),
            [
                
'jquery',
            ],
            
'4.0.6-rc.1',
            
true
        
);

        
wp_enqueue_script(
            
'elementor-app',
            
$this->get_js_assets_url'app' ),
            [
                
'wp-url',
                
'wp-i18n',
                
'react',
                
'react-dom',
                
'select2',
            ],
            
ELEMENTOR_VERSION,
            
true
        
);

        
$this->enqueue_dark_theme_detection_script();

        
wp_set_script_translations'elementor-app-packages''elementor' );
        
wp_set_script_translations'elementor-app''elementor' );

        
$this->print_config();
    }

    public function 
enqueue_app_loader() {
        
wp_enqueue_script(
            
'elementor-app-loader',
            
$this->get_js_assets_url'app-loader' ),
            [
                
'elementor-common',
            ],
            
ELEMENTOR_VERSION,
            
true
        
);

        
$this->print_config'elementor-app-loader' );
    }

    public function 
__construct() {
        
$this->add_component'site-editor', new Modules\SiteEditor\Module() );

        if ( 
current_user_can'manage_options' ) || Utils::is_wp_cli() ) {
            
$this->add_component'import-export', new Modules\ImportExport\Module() );

            
// Kit library is depended on import-export
            
$this->add_component'kit-library', new Modules\KitLibrary\Module() );
        }

        
$this->add_component'onboarding', new Modules\Onboarding\Module() );

        
add_action'elementor/admin/menu/register', function ( Admin_Menu_Manager $admin_menu ) {
            
$this->register_admin_menu$admin_menu );
        }, 
Source_Local::ADMIN_MENU_PRIORITY 10 );

        
// Happens after WP plugin page validation.
        
add_filter'add_menu_classes', [ $this'fix_submenu' ] );

        if ( 
$this->is_current() ) {
            
add_action'admin_init', [ $this'admin_init' ], );
        } else {
            
add_action'elementor/common/after_register_scripts', [ $this'enqueue_app_loader' ] );
        }
    }
}