PluginProbe
Elementor Website Builder – more than just a page builder / 3.7.5
Elementor Website Builder – more than just a page builder v3.7.5
4.3.0-beta3 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 All 452 releases
← All changes | core/editor/editor.php +431 -250 4.3.0-beta33.7.5 View file →
@@ -1,16 +1,23 @@
1 1 <?php
2 2 namespace Elementor\Core\Editor;
3 3
4 +use Elementor\Api;
5 +use Elementor\Core\Breakpoints\Breakpoint;
4 6 use Elementor\Core\Breakpoints\Manager as Breakpoints_Manager;
5 7 use Elementor\Core\Common\Modules\Ajax\Module;
8 +use Elementor\Core\Common\Modules\Ajax\Module as Ajax;
6 9 use Elementor\Core\Debug\Loading_Inspection_Manager;
7 -use Elementor\Core\Editor\Loader\Editor_Loader;
8 -use Elementor\Core\Utils\Assets_Config_Provider;
9 -use Elementor\Core\Utils\Collection;
10 +use Elementor\Core\Files\Uploads_Manager;
11 +use Elementor\Core\Schemes\Manager as Schemes_Manager;
10 12 use Elementor\Core\Settings\Manager as SettingsManager;
13 +use Elementor\Icons_Manager;
11 14 use Elementor\Plugin;
15 +use Elementor\Settings;
16 +use Elementor\Shapes;
12 17 use Elementor\TemplateLibrary\Source_Local;
18 +use Elementor\Tools;
19 +use Elementor\User;
13 20 use Elementor\Utils;
14 21 use Elementor\Core\Editor\Data;
15 22
16 23 if ( ! defined( 'ABSPATH' ) ) {
@@ -66,13 +73,8 @@
66 73 */
67 74 public $promotion;
68 75
69 76 /**
70 - * @var Editor_Loader
71 - */
72 - private $loader;
73 -
74 - /**
75 77 * Init.
76 78 *
77 79 * Initialize Elementor editor. Registers all needed actions to run Elementor,
78 80 * removes conflicting actions etc.
@@ -81,11 +83,11 @@
81 83 *
82 84 * @since 1.0.0
83 85 * @access public
84 86 *
85 - * @param bool $to_die Optional. Whether to die at the end. Default is `true`.
87 + * @param bool $die Optional. Whether to die at the end. Default is `true`.
86 88 */
87 - public function init( $to_die = true ) {
89 + public function init( $die = true ) {
88 90 if ( empty( $_REQUEST['post'] ) ) {
89 91 return;
90 92 }
91 93
@@ -117,10 +119,8 @@
117 119
118 120 // Send MIME Type header like WP admin-header.
119 121 @header( 'Content-Type: ' . get_option( 'html_type' ) . '; charset=' . get_option( 'blog_charset' ) );
120 122
121 - self::send_document_isolation_policy_header();
122 -
123 123 add_filter( 'show_admin_bar', '__return_false' );
124 124
125 125 // Remove all WordPress actions
126 126 remove_all_actions( 'wp_head' );
@@ -159,12 +159,12 @@
159 159 Utils::do_not_cache();
160 160
161 161 do_action( 'elementor/editor/init' );
162 162
163 - $this->get_loader()->print_root_template();
163 + $this->print_editor_template();
164 164
165 165 // From the action it's an empty string, from tests its `false`
166 - if ( false !== $to_die ) {
166 + if ( false !== $die ) {
167 167 die;
168 168 }
169 169 }
170 170
@@ -212,67 +212,8 @@
212 212 die;
213 213 }
214 214
215 215 /**
216 - * Whether the current request targets the Elementor editor.
217 - *
218 - * Unlike `is_edit_mode()`, this is not affected by temporary `set_edit_mode()` overrides.
219 - *
220 - * @since 4.1.0
221 - * @access public
222 - *
223 - * @return bool Whether the current request targets the Elementor editor.
224 - */
225 - public function is_editor_request() {
226 - $common = Plugin::$instance->common;
227 -
228 - if ( $common ) {
229 - /** @var Module ajax */
230 - $ajax_data = $common->get_component( 'ajax' )->get_current_action_data();
231 -
232 - if ( ! empty( $ajax_data ) && 'get_document_config' === $ajax_data['action'] ) {
233 - return true;
234 - }
235 - }
236 -
237 - if ( $this->is_editor_admin_screen() ) {
238 - return true;
239 - }
240 -
241 - return $this->is_editor_ajax_request();
242 - }
243 -
244 - private function is_editor_admin_screen(): bool {
245 - if ( ! function_exists( 'get_current_screen' ) ) {
246 - return false;
247 - }
248 -
249 - $screen = get_current_screen();
250 -
251 - if ( ! $screen ) {
252 - return false;
253 - }
254 -
255 - return isset( $_GET['action'] ) && 'elementor' === $_GET['action'] && in_array( $screen->base, [ 'post', 'toplevel_page_elementor' ], true );
256 - }
257 -
258 - private function is_editor_ajax_request(): bool {
259 - $actions = apply_filters( 'elementor/editor/ajax_actions', [
260 - 'elementor',
261 -
262 - // Templates
263 - 'elementor_get_templates',
264 - 'elementor_save_template',
265 - 'elementor_get_template',
266 - 'elementor_delete_template',
267 - 'elementor_import_template',
268 - 'elementor_library_direct_actions',
269 - ] );
270 -
271 - return isset( $_REQUEST['action'] ) && in_array( $_REQUEST['action'], $actions, true );
272 - }
273 -
274 - /**
275 216 * Whether the edit mode is active.
276 217 *
277 218 * Used to determine whether we are in the edit mode.
278 219 *
@@ -369,10 +310,8 @@
369 310 return get_user_by( 'id', $locked_user );
370 311 }
371 312
372 313 /**
373 - * NOTICE: This method not in use, it's here for backward compatibility.
374 - *
375 314 * Print Editor Template.
376 315 *
377 316 * Include the wrapper template of the editor.
378 317 *
@@ -395,14 +334,173 @@
395 334 remove_action( 'wp_enqueue_scripts', [ $this, __FUNCTION__ ], 999999 );
396 335
397 336 global $wp_styles, $wp_scripts;
398 337
338 + $plugin = Plugin::$instance;
339 +
399 340 // Reset global variable
400 341 $wp_styles = new \WP_Styles(); // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
401 342 $wp_scripts = new \WP_Scripts(); // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
402 343
403 - $this->get_loader()->register_scripts();
344 + $suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG || defined( 'ELEMENTOR_TESTS' ) && ELEMENTOR_TESTS ) ? '' : '.min';
404 345
346 + wp_register_script(
347 + 'elementor-editor-modules',
348 + ELEMENTOR_ASSETS_URL . 'js/editor-modules' . $suffix . '.js',
349 + [
350 + 'elementor-common-modules',
351 + ],
352 + ELEMENTOR_VERSION,
353 + true
354 + );
355 +
356 + wp_register_script(
357 + 'elementor-editor-document',
358 + ELEMENTOR_ASSETS_URL . 'js/editor-document' . $suffix . '.js',
359 + [
360 + 'elementor-common-modules',
361 + ],
362 + ELEMENTOR_VERSION,
363 + true
364 + );
365 + // Hack for waypoint with editor mode.
366 + wp_register_script(
367 + 'elementor-waypoints',
368 + ELEMENTOR_ASSETS_URL . 'lib/waypoints/waypoints-for-editor.js',
369 + [
370 + 'jquery',
371 + ],
372 + '4.0.2',
373 + true
374 + );
375 +
376 + wp_register_script(
377 + 'perfect-scrollbar',
378 + ELEMENTOR_ASSETS_URL . 'lib/perfect-scrollbar/js/perfect-scrollbar' . $suffix . '.js',
379 + [],
380 + '1.4.0',
381 + true
382 + );
383 +
384 + wp_register_script(
385 + 'jquery-easing',
386 + ELEMENTOR_ASSETS_URL . 'lib/jquery-easing/jquery-easing' . $suffix . '.js',
387 + [
388 + 'jquery',
389 + ],
390 + '1.3.2',
391 + true
392 + );
393 +
394 + wp_register_script(
395 + 'nprogress',
396 + ELEMENTOR_ASSETS_URL . 'lib/nprogress/nprogress' . $suffix . '.js',
397 + [],
398 + '0.2.0',
399 + true
400 + );
401 +
402 + wp_register_script(
403 + 'tipsy',
404 + ELEMENTOR_ASSETS_URL . 'lib/tipsy/tipsy' . $suffix . '.js',
405 + [
406 + 'jquery',
407 + ],
408 + '1.0.0',
409 + true
410 + );
411 +
412 + wp_register_script(
413 + 'jquery-elementor-select2',
414 + ELEMENTOR_ASSETS_URL . 'lib/e-select2/js/e-select2.full' . $suffix . '.js',
415 + [
416 + 'jquery',
417 + ],
418 + '4.0.6-rc.1',
419 + true
420 + );
421 +
422 + wp_register_script(
423 + 'flatpickr',
424 + ELEMENTOR_ASSETS_URL . 'lib/flatpickr/flatpickr' . $suffix . '.js',
425 + [
426 + 'jquery',
427 + ],
428 + '1.12.0',
429 + true
430 + );
431 +
432 + wp_register_script(
433 + 'ace',
434 + 'https://cdnjs.cloudflare.com/ajax/libs/ace/1.2.5/ace.js',
435 + [],
436 + '1.2.5',
437 + true
438 + );
439 +
440 + wp_register_script(
441 + 'ace-language-tools',
442 + 'https://cdnjs.cloudflare.com/ajax/libs/ace/1.2.5/ext-language_tools.js',
443 + [
444 + 'ace',
445 + ],
446 + '1.2.5',
447 + true
448 + );
449 +
450 + wp_register_script(
451 + 'jquery-hover-intent',
452 + ELEMENTOR_ASSETS_URL . 'lib/jquery-hover-intent/jquery-hover-intent' . $suffix . '.js',
453 + [],
454 + '1.0.0',
455 + true
456 + );
457 +
458 + wp_register_script(
459 + 'nouislider',
460 + ELEMENTOR_ASSETS_URL . 'lib/nouislider/nouislider' . $suffix . '.js',
461 + [],
462 + '13.0.0',
463 + true
464 + );
465 +
466 + wp_register_script(
467 + 'pickr',
468 + ELEMENTOR_ASSETS_URL . 'lib/pickr/pickr.min.js',
469 + [],
470 + '1.5.0',
471 + true
472 + );
473 +
474 + wp_register_script(
475 + 'elementor-editor',
476 + ELEMENTOR_ASSETS_URL . 'js/editor' . $suffix . '.js',
477 + [
478 + 'elementor-common',
479 + 'elementor-editor-modules',
480 + 'elementor-editor-document',
481 + 'wp-auth-check',
482 + 'jquery-ui-sortable',
483 + 'jquery-ui-resizable',
484 + 'perfect-scrollbar',
485 + 'nprogress',
486 + 'tipsy',
487 + 'imagesloaded',
488 + 'heartbeat',
489 + 'jquery-elementor-select2',
490 + 'flatpickr',
491 + 'ace',
492 + 'ace-language-tools',
493 + 'jquery-hover-intent',
494 + 'nouislider',
495 + 'pickr',
496 + 'react',
497 + 'react-dom',
498 + ],
499 + ELEMENTOR_VERSION,
500 + true
501 + );
502 +
405 503 /**
406 504 * Before editor enqueue scripts.
407 505 *
408 506 * Fires before Elementor editor scripts are enqueued.
@@ -413,13 +511,119 @@
413 511
414 512 // Tweak for WP Admin menu icons
415 513 wp_print_styles( 'editor-buttons' );
416 514
417 - $this->get_loader()->enqueue_scripts();
515 + $settings = SettingsManager::get_settings_managers_config();
516 + // Moved to document since 2.9.0.
517 + unset( $settings['page'] );
418 518
419 - Plugin::$instance->controls_manager->enqueue_control_scripts();
519 + $document = Plugin::$instance->documents->get_doc_or_auto_save( $this->post_id );
520 + $kits_manager = Plugin::$instance->kits_manager;
420 521
522 + $page_title_selector = $kits_manager->get_current_settings( 'page_title_selector' );
523 +
524 + $page_title_selector .= ', .elementor-page-title .elementor-heading-title';
525 +
526 + $config = [
527 + 'initial_document' => $document->get_config(),
528 + 'version' => ELEMENTOR_VERSION,
529 + 'home_url' => home_url(),
530 + 'admin_settings_url' => admin_url( 'admin.php?page=' . Settings::PAGE_ID ),
531 + 'admin_tools_url' => admin_url( 'admin.php?page=' . Tools::PAGE_ID ),
532 + 'autosave_interval' => AUTOSAVE_INTERVAL,
533 + 'tabs' => $plugin->controls_manager->get_tabs(),
534 + 'controls' => $plugin->controls_manager->get_controls_data(),
535 + 'elements' => $plugin->elements_manager->get_element_types_config(),
536 + 'schemes' => [
537 + 'items' => $plugin->schemes_manager->get_registered_schemes_data(),
538 + 'enabled_schemes' => Schemes_Manager::get_enabled_schemes(),
539 + ],
540 + 'globals' => [
541 + 'defaults_enabled' => [
542 + 'colors' => $kits_manager->is_custom_colors_enabled(),
543 + 'typography' => $kits_manager->is_custom_typography_enabled(),
544 + ],
545 + ],
546 + 'icons' => [
547 + 'libraries' => Icons_Manager::get_icon_manager_tabs_config(),
548 + 'goProURL' => 'https://go.elementor.com/go-pro-icon-library/',
549 + ],
550 + 'fa4_to_fa5_mapping_url' => ELEMENTOR_ASSETS_URL . 'lib/font-awesome/migration/mapping.js',
551 + 'default_schemes' => $plugin->schemes_manager->get_schemes_defaults(),
552 + 'settings' => $settings,
553 + 'system_schemes' => $plugin->schemes_manager->get_system_schemes(),
554 + 'wp_editor' => $this->get_wp_editor_config(),
555 + 'settings_page_link' => Settings::get_url(),
556 + 'tools_page_link' => Tools::get_url(),
557 + 'tools_page_nonce' => wp_create_nonce( 'tools-page-from-editor' ),
558 + 'elementor_site' => 'https://go.elementor.com/about-elementor/',
559 + 'docs_elementor_site' => 'https://go.elementor.com/docs/',
560 + 'help_the_content_url' => 'https://go.elementor.com/the-content-missing/',
561 + 'help_flexbox_bc_url' => 'https://go.elementor.com/flexbox-layout-bc/',
562 + 'elementPromotionURL' => 'https://go.elementor.com/go-pro-%s',
563 + 'dynamicPromotionURL' => 'https://go.elementor.com/go-pro-dynamic-tag',
564 + 'additional_shapes' => Shapes::get_additional_shapes_for_config(),
565 + 'user' => [
566 + 'restrictions' => $plugin->role_manager->get_user_restrictions_array(),
567 + 'is_administrator' => current_user_can( 'manage_options' ),
568 + 'introduction' => User::get_introduction_meta(),
569 + 'locale' => get_user_locale(),
570 + ],
571 + 'preview' => [
572 + 'help_preview_error_url' => 'https://go.elementor.com/preview-not-loaded/',
573 + 'help_preview_http_error_url' => 'https://go.elementor.com/preview-not-loaded/#permissions',
574 + 'help_preview_http_error_500_url' => 'https://go.elementor.com/500-error/',
575 + 'debug_data' => Loading_Inspection_Manager::instance()->run_inspections(),
576 + ],
577 + 'locale' => get_locale(),
578 + 'rich_editing_enabled' => filter_var( get_user_meta( get_current_user_id(), 'rich_editing', true ), FILTER_VALIDATE_BOOLEAN ),
579 + 'page_title_selector' => $page_title_selector,
580 + 'tinymceHasCustomConfig' => class_exists( 'Tinymce_Advanced' ) || class_exists( 'Advanced_Editor_Tools' ),
581 + 'inlineEditing' => Plugin::$instance->widgets_manager->get_inline_editing_config(),
582 + 'dynamicTags' => Plugin::$instance->dynamic_tags->get_config(),
583 + 'ui' => [
584 + 'darkModeStylesheetURL' => ELEMENTOR_ASSETS_URL . 'css/editor-dark-mode' . $suffix . '.css',
585 + 'defaultGenericFonts' => $kits_manager->get_current_settings( 'default_generic_fonts' ),
586 + ],
587 + // Empty array for BC to avoid errors.
588 + 'i18n' => [],
589 + // 'responsive' contains the custom breakpoints config introduced in Elementor v3.2.0
590 + 'responsive' => [
591 + 'breakpoints' => Plugin::$instance->breakpoints->get_breakpoints_config(),
592 + 'icons_map' => Plugin::$instance->breakpoints->get_responsive_icons_classes_map(),
593 + ],
594 + 'promotion' => [
595 + 'elements' => $this->promotion->get_elements_promotion(),
596 + ],
597 + ];
598 +
599 + if ( ! Utils::has_pro() && current_user_can( 'manage_options' ) ) {
600 + $config['promotionWidgets'] = Api::get_promotion_widgets();
601 + }
602 +
603 + $this->bc_move_document_filters();
604 +
421 605 /**
606 + * Localize editor settings.
607 + *
608 + * Filters the editor localized settings.
609 + *
610 + * @since 1.0.0
611 + *
612 + * @param array $config Editor configuration.
613 + * @param int $post_id The ID of the current post being edited.
614 + */
615 + $config = apply_filters( 'elementor/editor/localize_settings', $config );
616 +
617 + Utils::print_js_config( 'elementor-editor', 'ElementorConfig', $config );
618 +
619 + wp_enqueue_script( 'elementor-editor' );
620 +
621 + wp_set_script_translations( 'elementor-editor', 'elementor' );
622 +
623 + $plugin->controls_manager->enqueue_control_scripts();
624 +
625 + /**
422 626 * After editor enqueue scripts.
423 627 *
424 628 * Fires after Elementor editor scripts are enqueued.
425 629 *
@@ -445,13 +649,84 @@
445 649 * @since 1.0.0
446 650 */
447 651 do_action( 'elementor/editor/before_enqueue_styles' );
448 652
449 - $this->get_loader()->register_styles();
450 - $this->get_loader()->enqueue_styles();
653 + $suffix = Utils::is_script_debug() ? '' : '.min';
451 654
452 - $this->enqueue_theme_ui_styles();
655 + $direction_suffix = is_rtl() ? '-rtl' : '';
453 656
657 + wp_register_style(
658 + 'font-awesome',
659 + ELEMENTOR_ASSETS_URL . 'lib/font-awesome/css/font-awesome' . $suffix . '.css',
660 + [],
661 + '4.7.0'
662 + );
663 +
664 + wp_register_style(
665 + 'elementor-select2',
666 + ELEMENTOR_ASSETS_URL . 'lib/e-select2/css/e-select2' . $suffix . '.css',
667 + [],
668 + '4.0.6-rc.1'
669 + );
670 +
671 + wp_register_style(
672 + 'google-font-roboto',
673 + 'https://fonts.googleapis.com/css?family=Roboto:300,400,500,700',
674 + [],
675 + ELEMENTOR_VERSION
676 + );
677 +
678 + wp_register_style(
679 + 'flatpickr',
680 + ELEMENTOR_ASSETS_URL . 'lib/flatpickr/flatpickr' . $suffix . '.css',
681 + [],
682 + '1.12.0'
683 + );
684 +
685 + wp_register_style(
686 + 'pickr',
687 + ELEMENTOR_ASSETS_URL . 'lib/pickr/themes/monolith.min.css',
688 + [],
689 + '1.5.0'
690 + );
691 +
692 + wp_register_style(
693 + 'elementor-editor',
694 + ELEMENTOR_ASSETS_URL . 'css/editor' . $direction_suffix . $suffix . '.css',
695 + [
696 + 'elementor-common',
697 + 'elementor-select2',
698 + 'elementor-icons',
699 + 'wp-auth-check',
700 + 'google-font-roboto',
701 + 'flatpickr',
702 + 'pickr',
703 + ],
704 + ELEMENTOR_VERSION
705 + );
706 +
707 + wp_enqueue_style( 'elementor-editor' );
708 +
709 + $ui_theme = SettingsManager::get_settings_managers( 'editorPreferences' )->get_model()->get_settings( 'ui_theme' );
710 +
711 + if ( 'light' !== $ui_theme ) {
712 + $ui_theme_media_queries = 'all';
713 +
714 + if ( 'auto' === $ui_theme ) {
715 + $ui_theme_media_queries = '(prefers-color-scheme: dark)';
716 + }
717 +
718 + wp_enqueue_style(
719 + 'elementor-editor-dark-mode',
720 + ELEMENTOR_ASSETS_URL . 'css/editor-dark-mode' . $suffix . '.css',
721 + [
722 + 'elementor-editor',
723 + ],
724 + ELEMENTOR_VERSION,
725 + $ui_theme_media_queries
726 + );
727 + }
728 +
454 729 $breakpoints = Plugin::$instance->breakpoints->get_breakpoints();
455 730
456 731 // The two breakpoints under 'tablet' need to be checked for values.
457 732 if ( $breakpoints[ Breakpoints_Manager::BREAKPOINT_KEY_MOBILE ]->is_custom() || $breakpoints[ Breakpoints_Manager::BREAKPOINT_KEY_MOBILE_EXTRA ]->is_enabled() ) {
@@ -470,44 +745,51 @@
470 745 */
471 746 do_action( 'elementor/editor/after_enqueue_styles' );
472 747 }
473 748
474 - private function enqueue_theme_ui_styles() {
475 - $ui_theme_selected = SettingsManager::get_settings_managers( 'editorPreferences' )->get_model()->get_settings( 'ui_theme' );
749 + /**
750 + * Get WordPress editor config.
751 + *
752 + * Config the default WordPress editor with custom settings for Elementor use.
753 + *
754 + * @since 1.9.0
755 + * @access private
756 + */
757 + private function get_wp_editor_config() {
758 + // Remove all TinyMCE plugins.
759 + remove_all_filters( 'mce_buttons', 10 );
760 + remove_all_filters( 'mce_external_plugins', 10 );
476 761
477 - $ui_themes = [
478 - 'light',
479 - 'dark',
480 - ];
762 + if ( ! class_exists( '\_WP_Editors', false ) ) {
763 + require ABSPATH . WPINC . '/class-wp-editor.php';
764 + }
481 765
482 - if ( 'auto' === $ui_theme_selected || ! in_array( $ui_theme_selected, $ui_themes, true ) ) {
483 - $ui_light_theme_media_queries = '(prefers-color-scheme: light)';
484 - $ui_dark_theme_media_queries = '(prefers-color-scheme: dark)';
485 - } else {
486 - $ui_light_theme_media_queries = 'none';
487 - $ui_dark_theme_media_queries = 'none';
766 + // WordPress 4.8 and higher
767 + if ( method_exists( '\_WP_Editors', 'print_tinymce_scripts' ) ) {
768 + \_WP_Editors::print_default_editor_scripts();
769 + \_WP_Editors::print_tinymce_scripts();
770 + }
771 + ob_start();
488 772
489 - if ( 'light' === $ui_theme_selected ) {
490 - $ui_light_theme_media_queries = 'all';
491 - } elseif ( 'dark' === $ui_theme_selected ) {
492 - $ui_dark_theme_media_queries = 'all';
493 - }
494 - }
773 + wp_editor(
774 + '%%EDITORCONTENT%%',
775 + 'elementorwpeditor',
776 + [
777 + 'editor_class' => 'elementor-wp-editor',
778 + 'editor_height' => 250,
779 + 'drag_drop_upload' => true,
780 + ]
781 + );
495 782
496 - $this->enqueue_theme_ui( 'light', $ui_light_theme_media_queries );
497 - $this->enqueue_theme_ui( 'dark', $ui_dark_theme_media_queries );
498 - }
783 + $config = ob_get_clean();
499 784
500 - private function enqueue_theme_ui( $ui_theme, $ui_theme_media_queries = 'all' ) {
501 - $suffix = Utils::is_script_debug() ? '' : '.min';
785 + // Don't call \_WP_Editors methods again
786 + remove_action( 'admin_print_footer_scripts', [ '_WP_Editors', 'editor_js' ], 50 );
787 + remove_action( 'admin_print_footer_scripts', [ '_WP_Editors', 'print_default_editor_scripts' ], 45 );
502 788
503 - wp_enqueue_style(
504 - 'e-theme-ui-' . $ui_theme,
505 - ELEMENTOR_ASSETS_URL . 'css/theme-' . $ui_theme . $suffix . '.css',
506 - [],
507 - ELEMENTOR_VERSION,
508 - $ui_theme_media_queries
509 - );
789 + \_WP_Editors::editor_js();
790 +
791 + return $config;
510 792 }
511 793
512 794 /**
513 795 * Editor head trigger.
@@ -548,11 +830,13 @@
548 830 $plugin->controls_manager->render_controls();
549 831 $plugin->widgets_manager->render_widgets_content();
550 832 $plugin->elements_manager->render_elements_content();
551 833
834 + $plugin->schemes_manager->print_schemes_templates();
835 +
552 836 $plugin->dynamic_tags->print_templates();
553 837
554 - $this->get_loader()->register_additional_templates();
838 + $this->init_editor_templates();
555 839
556 840 /**
557 841 * Elementor editor footer.
558 842 *
@@ -599,89 +883,11 @@
599 883
600 884 // Handle autocomplete feature for URL control.
601 885 add_filter( 'wp_link_query_args', [ $this, 'filter_wp_link_query_args' ] );
602 886 add_filter( 'wp_link_query', [ $this, 'filter_wp_link_query' ] );
603 -
604 - add_filter( 'replace_editor', [ $this, 'filter_replace_editor' ], 10, 2 );
605 887 }
606 888
607 889 /**
608 - * Whether the Document-Isolation-Policy header should be sent on the
609 - * Elementor editor screen and the editor preview iframe.
610 - *
611 - * DIP places the document in its own agent cluster, which is the prerequisite
612 - * for cross-origin isolation features such as SharedArrayBuffer (required by
613 - * WordPress core's client-side media processing introduced in WP 7.1).
614 - *
615 - * Both the editor parent document and the preview iframe must send the same
616 - * DIP header so they join the same agent cluster and synchronous DOM access
617 - * between them (e.g. `iframe.contentWindow.elementorFrontend`) keeps working.
618 - *
619 - * The header is only honored by browsers on a secure context (HTTPS or
620 - * localhost) so the helper short-circuits on insecure origins to avoid
621 - * sending a header that the browser will ignore.
622 - *
623 - * @since 4.1.0
624 - *
625 - * @return bool
626 - */
627 - public static function should_use_document_isolation_policy() {
628 - if ( ! is_ssl() ) {
629 - $raw_host = isset( $_SERVER['HTTP_HOST'] ) ? sanitize_text_field( wp_unslash( $_SERVER['HTTP_HOST'] ) ) : '';
630 - $host = strtolower( (string) strtok( $raw_host, ':' ) );
631 -
632 - if ( 'localhost' !== $host && ! str_ends_with( $host, '.localhost' ) ) {
633 - return false;
634 - }
635 - }
636 -
637 - /**
638 - * Filters whether Elementor sends the Document-Isolation-Policy header
639 - * on the editor screen and preview iframe.
640 - *
641 - * @since 4.1.0
642 - *
643 - * @param bool $enabled Whether DIP is enabled. Defaults to true on a secure context.
644 - */
645 - return (bool) apply_filters( 'elementor/editor/use_document_isolation_policy', true );
646 - }
647 -
648 - /**
649 - * Send the Document-Isolation-Policy header for the current response.
650 - *
651 - * Safe to call from both the Elementor editor screen handler and the
652 - * preview iframe handler. No-op when {@see self::should_use_document_isolation_policy()}
653 - * returns false.
654 - *
655 - * @since 4.1.0
656 - */
657 - public static function send_document_isolation_policy_header() {
658 - if ( ! self::should_use_document_isolation_policy() || headers_sent() ) {
659 - return;
660 - }
661 -
662 - header( 'Document-Isolation-Policy: isolate-and-credentialless' );
663 - }
664 -
665 - /**
666 - * Signals to WordPress that Elementor is replacing the block editor on its own editor page,
667 - * so that block-editor-specific behaviour (e.g. WP 7.0 COOP/COEP isolation headers) is not
668 - * applied when the Elementor editor is active.
669 - *
670 - * @param bool $replace Whether the editor is being replaced.
671 - * @param \WP_Post $post The post being edited.
672 - *
673 - * @return bool
674 - */
675 - public function filter_replace_editor( $replace, $post ) {
676 - if ( isset( $_REQUEST['action'] ) && 'elementor' === $_REQUEST['action'] ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
677 - return true;
678 - }
679 -
680 - return $replace;
681 - }
682 -
683 - /**
684 890 * @since 2.2.0
685 891 * @access public
686 892 */
687 893 public function filter_wp_link_query_args( $query ) {
@@ -713,82 +919,57 @@
713 919
714 920 return $results;
715 921 }
716 922
717 - public function set_post_id( $post_id ) {
718 - $this->post_id = $post_id;
719 - }
720 -
721 923 /**
722 - * Get loader.
924 + * Init editor templates.
723 925 *
724 - * @return Editor_Loader
926 + * Initialize default elementor templates used in the editor panel.
927 + *
928 + * @since 1.7.0
929 + * @access private
725 930 */
726 - private function get_loader() {
727 - if ( ! $this->loader ) {
728 - $this->loader = new Editor_Loader(
729 - new Collection( [
730 - 'assets_url' => ELEMENTOR_ASSETS_URL,
731 - 'min_suffix' => ( Utils::is_script_debug() || Utils::is_elementor_tests() ) ? '' : '.min',
732 - 'direction_suffix' => is_rtl() ? '-rtl' : '',
733 - ] ),
734 - ( new Assets_Config_Provider() )->set_path_resolver(
735 - function ( $name ) {
736 - return ELEMENTOR_ASSETS_PATH . "js/packages/{$name}/{$name}.asset.php";
737 - }
738 - )
739 - );
931 + private function init_editor_templates() {
932 + $template_names = [
933 + 'global',
934 + 'panel',
935 + 'panel-elements',
936 + 'repeater',
937 + 'templates',
938 + 'navigator',
939 + 'hotkeys',
940 + 'responsive-bar',
941 + ];
740 942
741 - $this->loader->init();
943 + foreach ( $template_names as $template_name ) {
944 + Plugin::$instance->common->add_template( ELEMENTOR_PATH . "includes/editor-templates/$template_name.php" );
742 945 }
743 -
744 - return $this->loader;
745 946 }
746 947
747 - /**
748 - * Get elements presets.
749 - *
750 - * @return array
751 - */
752 - public function get_elements_presets() {
753 - $element_types = Plugin::$instance->elements_manager->get_element_types();
754 - $presets = [];
948 + private function bc_move_document_filters() {
949 + global $wp_filter;
755 950
756 - foreach ( $element_types as $el_type => $element ) {
757 - $this->check_element_for_presets( $element, $el_type, $presets );
758 - }
951 + $old_tag = 'elementor/editor/localize_settings';
952 + $new_tag = 'elementor/document/config';
759 953
760 - return $presets;
761 - }
762 -
763 - /**
764 - * @return void
765 - */
766 - private function check_element_for_presets( $element, $el_type, &$presets ) {
767 - $element_presets = $element->get_panel_presets();
768 -
769 - if ( empty( $element_presets ) ) {
954 + if ( ! has_filter( $old_tag ) ) {
770 955 return;
771 956 }
772 957
773 - foreach ( $element_presets as $key => $preset ) {
774 - $this->maybe_add_preset( $el_type, $preset, $key, $presets );
775 - }
776 - }
958 + foreach ( $wp_filter[ $old_tag ] as $priority => $filters ) {
959 + foreach ( $filters as $filter_id => $filter_args ) {
960 + if ( 2 === $filter_args['accepted_args'] ) {
961 + remove_filter( $old_tag, $filter_id, $priority );
777 962
778 - /**
779 - * @return void
780 - */
781 - private function maybe_add_preset( $el_type, $preset, $key, &$presets ) {
782 - if ( $this->is_valid_preset( $el_type, $preset ) ) {
783 - $presets[ $key ] = $preset;
963 + add_filter( $new_tag, $filter_args['function'], $priority, 2 );
964 +
965 + // TODO: Hard deprecation
966 + // _deprecated_hook( '`' . $old_tag . ` is no longer using post_id', '2.9.0', $new_tag' );
967 + }
968 + }
784 969 }
785 970 }
786 971
787 - /**
788 - * @return boolean
789 - */
790 - private function is_valid_preset( $el_type, $preset ) {
791 - return isset( $preset['replacements']['custom']['originalWidget'] )
792 - && $el_type === $preset['replacements']['custom']['originalWidget'];
972 + public function set_post_id( $post_id ) {
973 + $this->post_id = $post_id;
793 974 }
794 975 }