PluginProbe
Elementor Website Builder – more than just a page builder / 3.1.0-beta1
Elementor Website Builder – more than just a page builder v3.1.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 / core / editor / editor.php

editor.php in Elementor Website Builder – more than just a page builder 3.1.0-beta1, at core/editor/editor.php

1,080 lines 27.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace Elementor\Core\Editor;
3
4 use Elementor\Api;
5 use Elementor\Core\Common\Modules\Ajax\Module;
6 use Elementor\Core\Common\Modules\Ajax\Module as Ajax;
7 use Elementor\Core\Debug\Loading_Inspection_Manager;
8 use Elementor\Core\Files\Assets\Files_Upload_Handler;
9 use Elementor\Core\Responsive\Responsive;
10 use Elementor\Core\Schemes\Manager as Schemes_Manager;
11 use Elementor\Core\Settings\Manager as SettingsManager;
12 use Elementor\Icons_Manager;
13 use Elementor\Plugin;
14 use Elementor\Settings;
15 use Elementor\Shapes;
16 use Elementor\TemplateLibrary\Source_Local;
17 use Elementor\Tools;
18 use Elementor\User;
19 use Elementor\Utils;
20 use Elementor\Core\Editor\Data;
21
22 if ( ! defined( 'ABSPATH' ) ) {
23 exit; // Exit if accessed directly.
24 }
25
26 /**
27 * Elementor editor.
28 *
29 * Elementor editor handler class is responsible for initializing Elementor
30 * editor and register all the actions needed to display the editor.
31 *
32 * @since 1.0.0
33 */
34 class Editor {
35
36 /**
37 * The nonce key for Elementor editor.
38 * @deprecated 2.3.0
39 */
40 const EDITING_NONCE_KEY = 'elementor-editing';
41
42 /**
43 * User capability required to access Elementor editor.
44 */
45 const EDITING_CAPABILITY = 'edit_posts';
46
47 /**
48 * Post ID.
49 *
50 * Holds the ID of the current post being edited.
51 *
52 * @since 1.0.0
53 * @access private
54 *
55 * @var int Post ID.
56 */
57 private $post_id;
58
59 /**
60 * Whether the edit mode is active.
61 *
62 * Used to determine whether we are in edit mode.
63 *
64 * @since 1.0.0
65 * @access private
66 *
67 * @var bool Whether the edit mode is active.
68 */
69 private $is_edit_mode;
70
71 /**
72 * @var Notice_Bar
73 */
74 public $notice_bar;
75
76 /**
77 * Init.
78 *
79 * Initialize Elementor editor. Registers all needed actions to run Elementor,
80 * removes conflicting actions etc.
81 *
82 * Fired by `admin_action_elementor` action.
83 *
84 * @since 1.0.0
85 * @access public
86 *
87 * @param bool $die Optional. Whether to die at the end. Default is `true`.
88 */
89 public function init( $die = true ) {
90 if ( empty( $_REQUEST['post'] ) ) {
91 return;
92 }
93
94 $this->set_post_id( absint( $_REQUEST['post'] ) );
95
96 if ( ! $this->is_edit_mode( $this->post_id ) ) {
97 return;
98 }
99
100 // BC: From 2.9.0, the editor shouldn't handle the global post / current document.
101 // Use requested id and not the global in order to avoid conflicts with plugins that changes the global post.
102 query_posts( [
103 'p' => $this->post_id,
104 'post_type' => get_post_type( $this->post_id ),
105 ] );
106
107 Plugin::$instance->db->switch_to_post( $this->post_id );
108
109 $document = Plugin::$instance->documents->get( $this->post_id );
110
111 Plugin::$instance->documents->switch_to_document( $document );
112
113 // Change mode to Builder
114 $document->set_is_built_with_elementor( true );
115
116 // End BC.
117
118 Loading_Inspection_Manager::instance()->register_inspections();
119
120 // Send MIME Type header like WP admin-header.
121 @header( 'Content-Type: ' . get_option( 'html_type' ) . '; charset=' . get_option( 'blog_charset' ) );
122
123 add_filter( 'show_admin_bar', '__return_false' );
124
125 // Remove all WordPress actions
126 remove_all_actions( 'wp_head' );
127 remove_all_actions( 'wp_print_styles' );
128 remove_all_actions( 'wp_print_head_scripts' );
129 remove_all_actions( 'wp_footer' );
130
131 // Handle `wp_head`
132 add_action( 'wp_head', 'wp_enqueue_scripts', 1 );
133 add_action( 'wp_head', 'wp_print_styles', 8 );
134 add_action( 'wp_head', 'wp_print_head_scripts', 9 );
135 add_action( 'wp_head', 'wp_site_icon' );
136 add_action( 'wp_head', [ $this, 'editor_head_trigger' ], 30 );
137
138 // Handle `wp_footer`
139 add_action( 'wp_footer', 'wp_print_footer_scripts', 20 );
140 add_action( 'wp_footer', 'wp_auth_check_html', 30 );
141 add_action( 'wp_footer', [ $this, 'wp_footer' ] );
142
143 // Handle `wp_enqueue_scripts`
144 remove_all_actions( 'wp_enqueue_scripts' );
145
146 // Also remove all scripts hooked into after_wp_tiny_mce.
147 remove_all_actions( 'after_wp_tiny_mce' );
148
149 add_action( 'wp_enqueue_scripts', [ $this, 'enqueue_scripts' ], 999999 );
150 add_action( 'wp_enqueue_scripts', [ $this, 'enqueue_styles' ], 999999 );
151
152 // Setup default heartbeat options
153 add_filter( 'heartbeat_settings', function( $settings ) {
154 $settings['interval'] = 15;
155 return $settings;
156 } );
157
158 // Tell to WP Cache plugins do not cache this request.
159 Utils::do_not_cache();
160
161 do_action( 'elementor/editor/init' );
162
163 $this->print_editor_template();
164
165 // From the action it's an empty string, from tests its `false`
166 if ( false !== $die ) {
167 die;
168 }
169 }
170
171 /**
172 * Retrieve post ID.
173 *
174 * Get the ID of the current post.
175 *
176 * @since 1.8.0
177 * @access public
178 *
179 * @return int Post ID.
180 */
181 public function get_post_id() {
182 return $this->post_id;
183 }
184
185 /**
186 * Redirect to new URL.
187 *
188 * Used as a fallback function for the old URL structure of Elementor page
189 * edit URL.
190 *
191 * Fired by `template_redirect` action.
192 *
193 * @since 1.6.0
194 * @access public
195 */
196 public function redirect_to_new_url() {
197 if ( ! isset( $_GET['elementor'] ) ) {
198 return;
199 }
200
201 $document = Plugin::$instance->documents->get( get_the_ID() );
202
203 if ( ! $document ) {
204 wp_die( __( 'Document not found.', 'elementor' ) );
205 }
206
207 if ( ! $document->is_editable_by_current_user() || ! $document->is_built_with_elementor() ) {
208 return;
209 }
210
211 wp_safe_redirect( $document->get_edit_url() );
212 die;
213 }
214
215 /**
216 * Whether the edit mode is active.
217 *
218 * Used to determine whether we are in the edit mode.
219 *
220 * @since 1.0.0
221 * @access public
222 *
223 * @param int $post_id Optional. Post ID. Default is `null`, the current
224 * post ID.
225 *
226 * @return bool Whether the edit mode is active.
227 */
228 public function is_edit_mode( $post_id = null ) {
229 if ( null !== $this->is_edit_mode ) {
230 return $this->is_edit_mode;
231 }
232
233 if ( empty( $post_id ) ) {
234 $post_id = $this->post_id;
235 }
236
237 $document = Plugin::$instance->documents->get( $post_id );
238
239 if ( ! $document || ! $document->is_editable_by_current_user() ) {
240 return false;
241 }
242
243 /** @var Module ajax */
244 $ajax_data = Plugin::$instance->common->get_component( 'ajax' )->get_current_action_data();
245
246 if ( ! empty( $ajax_data ) && 'get_document_config' === $ajax_data['action'] ) {
247 return true;
248 }
249
250 // Ajax request as Editor mode
251 $actions = [
252 'elementor',
253
254 // Templates
255 'elementor_get_templates',
256 'elementor_save_template',
257 'elementor_get_template',
258 'elementor_delete_template',
259 'elementor_import_template',
260 'elementor_library_direct_actions',
261 ];
262
263 if ( isset( $_REQUEST['action'] ) && in_array( $_REQUEST['action'], $actions ) ) {
264 return true;
265 }
266
267 return false;
268 }
269
270 /**
271 * Lock post.
272 *
273 * Mark the post as currently being edited by the current user.
274 *
275 * @since 1.0.0
276 * @access public
277 *
278 * @param int $post_id The ID of the post being edited.
279 */
280 public function lock_post( $post_id ) {
281 if ( ! function_exists( 'wp_set_post_lock' ) ) {
282 require_once ABSPATH . 'wp-admin/includes/post.php';
283 }
284
285 wp_set_post_lock( $post_id );
286 }
287
288 /**
289 * Get locked user.
290 *
291 * Check what user is currently editing the post.
292 *
293 * @since 1.0.0
294 * @access public
295 *
296 * @param int $post_id The ID of the post being edited.
297 *
298 * @return \WP_User|false User information or false if the post is not locked.
299 */
300 public function get_locked_user( $post_id ) {
301 if ( ! function_exists( 'wp_check_post_lock' ) ) {
302 require_once ABSPATH . 'wp-admin/includes/post.php';
303 }
304
305 $locked_user = wp_check_post_lock( $post_id );
306 if ( ! $locked_user ) {
307 return false;
308 }
309
310 return get_user_by( 'id', $locked_user );
311 }
312
313 /**
314 * Print Editor Template.
315 *
316 * Include the wrapper template of the editor.
317 *
318 * @since 2.2.0
319 * @access public
320 */
321 public function print_editor_template() {
322 include ELEMENTOR_PATH . 'includes/editor-templates/editor-wrapper.php';
323 }
324
325 /**
326 * Enqueue scripts.
327 *
328 * Registers all the editor scripts and enqueues them.
329 *
330 * @since 1.0.0
331 * @access public
332 */
333 public function enqueue_scripts() {
334 remove_action( 'wp_enqueue_scripts', [ $this, __FUNCTION__ ], 999999 );
335
336 global $wp_styles, $wp_scripts;
337
338 $plugin = Plugin::$instance;
339
340 // Reset global variable
341 $wp_styles = new \WP_Styles(); // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
342 $wp_scripts = new \WP_Scripts(); // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
343
344 $suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG || defined( 'ELEMENTOR_TESTS' ) && ELEMENTOR_TESTS ) ? '' : '.min';
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
503 /**
504 * Before editor enqueue scripts.
505 *
506 * Fires before Elementor editor scripts are enqueued.
507 *
508 * @since 1.0.0
509 */
510 do_action( 'elementor/editor/before_enqueue_scripts' );
511
512 // Tweak for WP Admin menu icons
513 wp_print_styles( 'editor-buttons' );
514
515 $settings = SettingsManager::get_settings_managers_config();
516 // Moved to document since 2.9.0.
517 unset( $settings['page'] );
518
519 $document = Plugin::$instance->documents->get_doc_or_auto_save( $this->post_id );
520 $kits_manager = Plugin::$instance->kits_manager;
521
522 $page_title_selector = $kits_manager->get_current_settings( 'page_title_selector' );
523
524 $page_title_selector .= ', .elementor-page-title';
525
526 $active_experimental_features = Plugin::$instance->experiments->get_active_features();
527
528 $active_experimental_features = array_fill_keys( array_keys( $active_experimental_features ), true );
529
530 $config = [
531 'initial_document' => $document->get_config(),
532 'version' => ELEMENTOR_VERSION,
533 'home_url' => home_url(),
534 'admin_settings_url' => admin_url( 'admin.php?page=' . Settings::PAGE_ID ),
535 'autosave_interval' => AUTOSAVE_INTERVAL,
536 'tabs' => $plugin->controls_manager->get_tabs(),
537 'controls' => $plugin->controls_manager->get_controls_data(),
538 'elements' => $plugin->elements_manager->get_element_types_config(),
539 'schemes' => [
540 'items' => $plugin->schemes_manager->get_registered_schemes_data(),
541 'enabled_schemes' => Schemes_Manager::get_enabled_schemes(),
542 ],
543 'globals' => [
544 'defaults_enabled' => [
545 'colors' => $kits_manager->is_custom_colors_enabled(),
546 'typography' => $kits_manager->is_custom_typography_enabled(),
547 ],
548 ],
549 'icons' => [
550 'libraries' => Icons_Manager::get_icon_manager_tabs_config(),
551 'goProURL' => Utils::get_pro_link( 'https://elementor.com/pro/?utm_source=icon-library&utm_campaign=gopro&utm_medium=wp-dash' ),
552 ],
553 'filesUpload' => [
554 'unfilteredFiles' => Files_Upload_Handler::is_enabled(),
555 ],
556 'fa4_to_fa5_mapping_url' => ELEMENTOR_ASSETS_URL . 'lib/font-awesome/migration/mapping.js',
557 'default_schemes' => $plugin->schemes_manager->get_schemes_defaults(),
558 'settings' => $settings,
559 'system_schemes' => $plugin->schemes_manager->get_system_schemes(),
560 'wp_editor' => $this->get_wp_editor_config(),
561 'settings_page_link' => Settings::get_url(),
562 'tools_page_link' => Tools::get_url(),
563 'elementor_site' => 'https://go.elementor.com/about-elementor/',
564 'docs_elementor_site' => 'https://go.elementor.com/docs/',
565 'help_the_content_url' => 'https://go.elementor.com/the-content-missing/',
566 'help_right_click_url' => 'https://go.elementor.com/meet-right-click/',
567 'help_flexbox_bc_url' => 'https://go.elementor.com/flexbox-layout-bc/',
568 'elementPromotionURL' => 'https://go.elementor.com/go-pro-%s',
569 'dynamicPromotionURL' => 'https://go.elementor.com/go-pro-dynamic-tag',
570 'additional_shapes' => Shapes::get_additional_shapes_for_config(),
571 'user' => [
572 'restrictions' => $plugin->role_manager->get_user_restrictions_array(),
573 'is_administrator' => current_user_can( 'manage_options' ),
574 'introduction' => User::get_introduction_meta(),
575 ],
576 'preview' => [
577 'help_preview_error_url' => 'https://go.elementor.com/preview-not-loaded/',
578 'help_preview_http_error_url' => 'https://go.elementor.com/preview-not-loaded/#permissions',
579 'help_preview_http_error_500_url' => 'https://go.elementor.com/500-error/',
580 'debug_data' => Loading_Inspection_Manager::instance()->run_inspections(),
581 ],
582 'locale' => get_locale(),
583 'rich_editing_enabled' => filter_var( get_user_meta( get_current_user_id(), 'rich_editing', true ), FILTER_VALIDATE_BOOLEAN ),
584 'page_title_selector' => $page_title_selector,
585 'tinymceHasCustomConfig' => class_exists( 'Tinymce_Advanced' ) || class_exists( 'Advanced_Editor_Tools' ),
586 'inlineEditing' => Plugin::$instance->widgets_manager->get_inline_editing_config(),
587 'dynamicTags' => Plugin::$instance->dynamic_tags->get_config(),
588 'ui' => [
589 'darkModeStylesheetURL' => ELEMENTOR_ASSETS_URL . 'css/editor-dark-mode' . $suffix . '.css',
590 'defaultGenericFonts' => $kits_manager->get_current_settings( 'default_generic_fonts' ),
591 ],
592 // Empty array for BC to avoid errors.
593 'i18n' => [],
594 'experimentalFeatures' => $active_experimental_features,
595 ];
596
597 if ( ! Utils::has_pro() && current_user_can( 'manage_options' ) ) {
598 $config['promotionWidgets'] = Api::get_promotion_widgets();
599 }
600
601 $this->bc_move_document_filters();
602
603 /**
604 * Localize editor settings.
605 *
606 * Filters the editor localized settings.
607 *
608 * @since 1.0.0
609 *
610 * @param array $config Editor configuration.
611 * @param int $post_id The ID of the current post being edited.
612 */
613 $config = apply_filters( 'elementor/editor/localize_settings', $config );
614
615 Utils::print_js_config( 'elementor-editor', 'ElementorConfig', $config );
616
617 wp_enqueue_script( 'elementor-editor' );
618
619 wp_set_script_translations( 'elementor-editor', 'elementor' );
620
621 $plugin->controls_manager->enqueue_control_scripts();
622
623 /**
624 * After editor enqueue scripts.
625 *
626 * Fires after Elementor editor scripts are enqueued.
627 *
628 * @since 1.0.0
629 */
630 do_action( 'elementor/editor/after_enqueue_scripts' );
631 }
632
633 /**
634 * Enqueue styles.
635 *
636 * Registers all the editor styles and enqueues them.
637 *
638 * @since 1.0.0
639 * @access public
640 */
641 public function enqueue_styles() {
642 /**
643 * Before editor enqueue styles.
644 *
645 * Fires before Elementor editor styles are enqueued.
646 *
647 * @since 1.0.0
648 */
649 do_action( 'elementor/editor/before_enqueue_styles' );
650
651 $suffix = Utils::is_script_debug() ? '' : '.min';
652
653 $direction_suffix = is_rtl() ? '-rtl' : '';
654
655 wp_register_style(
656 'font-awesome',
657 ELEMENTOR_ASSETS_URL . 'lib/font-awesome/css/font-awesome' . $suffix . '.css',
658 [],
659 '4.7.0'
660 );
661
662 wp_register_style(
663 'elementor-select2',
664 ELEMENTOR_ASSETS_URL . 'lib/e-select2/css/e-select2' . $suffix . '.css',
665 [],
666 '4.0.6-rc.1'
667 );
668
669 wp_register_style(
670 'google-font-roboto',
671 'https://fonts.googleapis.com/css?family=Roboto:300,400,500,700',
672 [],
673 ELEMENTOR_VERSION
674 );
675
676 wp_register_style(
677 'flatpickr',
678 ELEMENTOR_ASSETS_URL . 'lib/flatpickr/flatpickr' . $suffix . '.css',
679 [],
680 '1.12.0'
681 );
682
683 wp_register_style(
684 'pickr',
685 ELEMENTOR_ASSETS_URL . 'lib/pickr/themes/monolith.min.css',
686 [],
687 '1.5.0'
688 );
689
690 wp_register_style(
691 'elementor-editor',
692 ELEMENTOR_ASSETS_URL . 'css/editor' . $direction_suffix . $suffix . '.css',
693 [
694 'elementor-common',
695 'elementor-select2',
696 'elementor-icons',
697 'wp-auth-check',
698 'google-font-roboto',
699 'flatpickr',
700 'pickr',
701 ],
702 ELEMENTOR_VERSION
703 );
704
705 wp_enqueue_style( 'elementor-editor' );
706
707 $ui_theme = SettingsManager::get_settings_managers( 'editorPreferences' )->get_model()->get_settings( 'ui_theme' );
708
709 if ( 'light' !== $ui_theme ) {
710 $ui_theme_media_queries = 'all';
711
712 if ( 'auto' === $ui_theme ) {
713 $ui_theme_media_queries = '(prefers-color-scheme: dark)';
714 }
715
716 wp_enqueue_style(
717 'elementor-editor-dark-mode',
718 ELEMENTOR_ASSETS_URL . 'css/editor-dark-mode' . $suffix . '.css',
719 [
720 'elementor-editor',
721 ],
722 ELEMENTOR_VERSION,
723 $ui_theme_media_queries
724 );
725 }
726
727 if ( Responsive::has_custom_breakpoints() ) {
728 $breakpoints = Responsive::get_breakpoints();
729
730 wp_add_inline_style( 'elementor-editor', '.elementor-device-tablet #elementor-preview-responsive-wrapper { width: ' . $breakpoints['md'] . 'px; }' );
731 }
732
733 /**
734 * After editor enqueue styles.
735 *
736 * Fires after Elementor editor styles are enqueued.
737 *
738 * @since 1.0.0
739 */
740 do_action( 'elementor/editor/after_enqueue_styles' );
741 }
742
743 /**
744 * Get WordPress editor config.
745 *
746 * Config the default WordPress editor with custom settings for Elementor use.
747 *
748 * @since 1.9.0
749 * @access private
750 */
751 private function get_wp_editor_config() {
752 // Remove all TinyMCE plugins.
753 remove_all_filters( 'mce_buttons', 10 );
754 remove_all_filters( 'mce_external_plugins', 10 );
755
756 if ( ! class_exists( '\_WP_Editors', false ) ) {
757 require ABSPATH . WPINC . '/class-wp-editor.php';
758 }
759
760 // WordPress 4.8 and higher
761 if ( method_exists( '\_WP_Editors', 'print_tinymce_scripts' ) ) {
762 \_WP_Editors::print_default_editor_scripts();
763 \_WP_Editors::print_tinymce_scripts();
764 }
765 ob_start();
766
767 wp_editor(
768 '%%EDITORCONTENT%%',
769 'elementorwpeditor',
770 [
771 'editor_class' => 'elementor-wp-editor',
772 'editor_height' => 250,
773 'drag_drop_upload' => true,
774 ]
775 );
776
777 $config = ob_get_clean();
778
779 // Don't call \_WP_Editors methods again
780 remove_action( 'admin_print_footer_scripts', [ '_WP_Editors', 'editor_js' ], 50 );
781 remove_action( 'admin_print_footer_scripts', [ '_WP_Editors', 'print_default_editor_scripts' ], 45 );
782
783 \_WP_Editors::editor_js();
784
785 return $config;
786 }
787
788 /**
789 * Editor head trigger.
790 *
791 * Fires the 'elementor/editor/wp_head' action in the head tag in Elementor
792 * editor.
793 *
794 * @since 1.0.0
795 * @access public
796 */
797 public function editor_head_trigger() {
798 /**
799 * Elementor editor head.
800 *
801 * Fires on Elementor editor head tag.
802 *
803 * Used to prints scripts or any other data in the head tag.
804 *
805 * @since 1.0.0
806 */
807 do_action( 'elementor/editor/wp_head' );
808 }
809
810 /**
811 * Add editor template.
812 *
813 * Registers new editor templates.
814 *
815 * @since 1.0.0
816 * @deprecated 2.3.0 Use `Plugin::$instance->common->add_template()`
817 * @access public
818 *
819 * @param string $template Can be either a link to template file or template
820 * HTML content.
821 * @param string $type Optional. Whether to handle the template as path
822 * or text. Default is `path`.
823 */
824 public function add_editor_template( $template, $type = 'path' ) {
825 _deprecated_function( __METHOD__, '2.3.0', 'Plugin::$instance->common->add_template()' );
826
827 $common = Plugin::$instance->common;
828
829 if ( $common ) {
830 Plugin::$instance->common->add_template( $template, $type );
831 }
832 }
833
834 /**
835 * WP footer.
836 *
837 * Prints Elementor editor with all the editor templates, and render controls,
838 * widgets and content elements.
839 *
840 * Fired by `wp_footer` action.
841 *
842 * @since 1.0.0
843 * @access public
844 */
845 public function wp_footer() {
846 $plugin = Plugin::$instance;
847
848 $plugin->controls_manager->render_controls();
849 $plugin->widgets_manager->render_widgets_content();
850 $plugin->elements_manager->render_elements_content();
851
852 $plugin->schemes_manager->print_schemes_templates();
853
854 $plugin->dynamic_tags->print_templates();
855
856 $this->init_editor_templates();
857
858 /**
859 * Elementor editor footer.
860 *
861 * Fires on Elementor editor before closing the body tag.
862 *
863 * Used to prints scripts or any other HTML before closing the body tag.
864 *
865 * @since 1.0.0
866 */
867 do_action( 'elementor/editor/footer' );
868 }
869
870 /**
871 * Set edit mode.
872 *
873 * Used to update the edit mode.
874 *
875 * @since 1.0.0
876 * @access public
877 *
878 * @param bool $edit_mode Whether the edit mode is active.
879 */
880 public function set_edit_mode( $edit_mode ) {
881 $this->is_edit_mode = $edit_mode;
882 }
883
884 /**
885 * Editor constructor.
886 *
887 * Initializing Elementor editor and redirect from old URL structure of
888 * Elementor editor.
889 *
890 * @since 1.0.0
891 * @access public
892 */
893 public function __construct() {
894 Plugin::$instance->data_manager->register_controller( Data\Globals\Controller::class );
895
896 $this->notice_bar = new Notice_Bar();
897
898 add_action( 'admin_action_elementor', [ $this, 'init' ] );
899 add_action( 'template_redirect', [ $this, 'redirect_to_new_url' ] );
900
901 // Handle autocomplete feature for URL control.
902 add_filter( 'wp_link_query_args', [ $this, 'filter_wp_link_query_args' ] );
903 add_filter( 'wp_link_query', [ $this, 'filter_wp_link_query' ] );
904 }
905
906 /**
907 * @since 2.2.0
908 * @access public
909 */
910 public function filter_wp_link_query_args( $query ) {
911 $library_cpt_key = array_search( Source_Local::CPT, $query['post_type'], true );
912 if ( false !== $library_cpt_key ) {
913 unset( $query['post_type'][ $library_cpt_key ] );
914 }
915
916 return $query;
917 }
918
919 /**
920 * @since 2.2.0
921 * @access public
922 */
923 public function filter_wp_link_query( $results ) {
924 if ( isset( $_POST['editor'] ) && 'elementor' === $_POST['editor'] ) {
925 $post_type_object = get_post_type_object( 'post' );
926 $post_label = $post_type_object->labels->singular_name;
927
928 foreach ( $results as & $result ) {
929 if ( 'post' === get_post_type( $result['ID'] ) ) {
930 $result['info'] = $post_label;
931 }
932 }
933 }
934
935 return $results;
936 }
937
938 /**
939 * Create nonce.
940 *
941 * If the user has edit capabilities, it creates a cryptographic token to
942 * give him access to Elementor editor.
943 *
944 * @since 1.8.1
945 * @since 1.8.7 The `$post_type` parameter was introduces.
946 * @deprecated 2.3.0 Use `Plugin::$instance->common->get_component( 'ajax' )->create_nonce()` instead
947 * @access public
948 *
949 * @param string $post_type The post type to check capabilities.
950 *
951 * @return null|string The nonce token, or `null` if the user has no edit
952 * capabilities.
953 */
954 public function create_nonce( $post_type ) {
955 _deprecated_function( __METHOD__, '2.3.0', 'Plugin::$instance->common->get_component( \'ajax\' )->create_nonce()' );
956
957 /** @var Ajax $ajax */
958 $ajax = Plugin::$instance->common->get_component( 'ajax' );
959
960 return $ajax->create_nonce();
961 }
962
963 /**
964 * Verify nonce.
965 *
966 * The user is given an amount of time to use the token, so therefore, since
967 * the user ID and `$action` remain the same, the independent variable is
968 * the time.
969 *
970 * @since 1.8.1
971 * @deprecated 2.3.0
972 * @access public
973 *
974 * @param string $nonce Nonce to verify.
975 *
976 * @return false|int If the nonce is invalid it returns `false`. If the
977 * nonce is valid and generated between 0-12 hours ago it
978 * returns `1`. If the nonce is valid and generated
979 * between 12-24 hours ago it returns `2`.
980 */
981 public function verify_nonce( $nonce ) {
982 _deprecated_function( __METHOD__, '2.3.0', 'wp_verify_nonce()' );
983
984 return wp_verify_nonce( $nonce );
985 }
986
987 /**
988 * Verify request nonce.
989 *
990 * Whether the request nonce verified or not.
991 *
992 * @since 1.8.1
993 * @deprecated 2.3.0 Use `Plugin::$instance->common->get_component( 'ajax' )->verify_request_nonce()` instead
994 * @access public
995 *
996 * @return bool True if request nonce verified, False otherwise.
997 */
998 public function verify_request_nonce() {
999 _deprecated_function( __METHOD__, '2.3.0', 'Plugin::$instance->common->get_component( \'ajax\' )->verify_request_nonce()' );
1000
1001 /** @var Ajax $ajax */
1002 $ajax = Plugin::$instance->common->get_component( 'ajax' );
1003
1004 return $ajax->verify_request_nonce();
1005 }
1006
1007 /**
1008 * Verify ajax nonce.
1009 *
1010 * Verify request nonce and send a JSON request, if not verified returns an
1011 * error.
1012 *
1013 * @since 1.9.0
1014 * @deprecated 2.3.0
1015 * @access public
1016 */
1017 public function verify_ajax_nonce() {
1018 _deprecated_function( __METHOD__, '2.3.0' );
1019
1020 /** @var Ajax $ajax */
1021 $ajax = Plugin::$instance->common->get_component( 'ajax' );
1022
1023 if ( ! $ajax->verify_request_nonce() ) {
1024 wp_send_json_error( new \WP_Error( 'token_expired', 'Nonce token expired.' ) );
1025 }
1026 }
1027
1028 /**
1029 * Init editor templates.
1030 *
1031 * Initialize default elementor templates used in the editor panel.
1032 *
1033 * @since 1.7.0
1034 * @access private
1035 */
1036 private function init_editor_templates() {
1037 $template_names = [
1038 'global',
1039 'panel',
1040 'panel-elements',
1041 'repeater',
1042 'templates',
1043 'navigator',
1044 'hotkeys',
1045 ];
1046
1047 foreach ( $template_names as $template_name ) {
1048 Plugin::$instance->common->add_template( ELEMENTOR_PATH . "includes/editor-templates/$template_name.php" );
1049 }
1050 }
1051
1052 private function bc_move_document_filters() {
1053 global $wp_filter;
1054
1055 $old_tag = 'elementor/editor/localize_settings';
1056 $new_tag = 'elementor/document/config';
1057
1058 if ( ! has_filter( $old_tag ) ) {
1059 return;
1060 }
1061
1062 foreach ( $wp_filter[ $old_tag ] as $priority => $filters ) {
1063 foreach ( $filters as $filter_id => $filter_args ) {
1064 if ( 2 === $filter_args['accepted_args'] ) {
1065 remove_filter( $old_tag, $filter_id, $priority );
1066
1067 add_filter( $new_tag, $filter_args['function'], $priority, 2 );
1068
1069 // TODO: Hard deprecation
1070 // _deprecated_hook( '`' . $old_tag . ` is no longer using post_id', '2.9.0', $new_tag' );
1071 }
1072 }
1073 }
1074 }
1075
1076 public function set_post_id( $post_id ) {
1077 $this->post_id = $post_id;
1078 }
1079 }
1080