/var/www/html_us/wp-content/plugins/elementor/includes/compatibility.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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
<?php
namespace Elementor;

use 
Elementor\Core\Base\Document;
use 
Elementor\Core\DocumentTypes\PageBase;
use 
Elementor\TemplateLibrary\Source_Local;
use 
Elementor\Utils;

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

/**
 * Elementor compatibility.
 *
 * Elementor compatibility handler class is responsible for compatibility with
 * external plugins. The class resolves different issues with non-compatible
 * plugins.
 *
 * @since 1.0.0
 */
class Compatibility {

    
/**
     * Register actions.
     *
     * Run Elementor compatibility with external plugins using custom filters and
     * actions.
     *
     * @since 1.0.0
     * @access public
     * @static
     */
    
public static function register_actions() {
        
add_action'init', [ __CLASS__'init' ] );

        
self::polylang_compatibility();
        
self::yoast_duplicate_post();

        if ( 
is_admin() || defined'WP_LOAD_IMPORTERS' ) ) {
            
add_filter'wp_import_post_meta', [ __CLASS__'on_wp_import_post_meta' ] );
            
add_filter'wxr_importer.pre_process.post_meta', [ __CLASS__'on_wxr_importer_pre_process_post_meta' ] );
        }

        
add_action'elementor/maintenance_mode/mode_changed', [ __CLASS__'clear_3rd_party_cache' ] );

        
// Enable floating buttons and link in bio experiment for all.
        // TODO Remove in version 3.26
        
add_filter'pre_option_elementor_experiment-floating-buttons', [ __CLASS__'return_active' ] );
        
add_filter'pre_option_elementor_experiment-link-in-bio', [ __CLASS__'return_active' ] );
    }

    public static function 
return_active() {
        return 
'active';
    }

    public static function 
clear_3rd_party_cache() {
        
// W3 Total Cache.
        
if ( function_exists'w3tc_flush_all' ) ) {
            
w3tc_flush_all();
        }

        
// WP Fastest Cache.
        
if ( ! empty( $GLOBALS['wp_fastest_cache'] ) && method_exists$GLOBALS['wp_fastest_cache'], 'deleteCache' ) ) {
            
$GLOBALS['wp_fastest_cache']->deleteCache();
        }

        
// WP Super Cache
        
if ( function_exists'wp_cache_clean_cache' ) ) {
            global 
$file_prefix;
            
wp_cache_clean_cache$file_prefixtrue );
        }
    }

    
/**
     * Add new button to gutenberg.
     *
     * Insert new "Elementor" button to the gutenberg editor to create new post
     * using Elementor page builder.
     *
     * @since 1.9.0
     * @access public
     * @static
     */
    
public static function add_new_button_to_gutenberg() {
        global 
$typenow;
        if ( ! 
User::is_current_user_can_edit_post_type$typenow ) ) {
            return;
        }

        
// Introduced in WP 5.0
        
if ( function_exists'use_block_editor_for_post' ) && ! use_block_editor_for_post$typenow ) ) {
            return;
        }

        
// Deprecated/removed in Gutenberg plugin v5.3.0
        
if ( function_exists'gutenberg_can_edit_post_type' ) && ! gutenberg_can_edit_post_type$typenow ) ) {
            return;
        }

        
?>
        <script>
            document.addEventListener( 'DOMContentLoaded', function() {
                var dropdown = document.querySelector( '#split-page-title-action .dropdown' );

                if ( ! dropdown ) {
                    return;
                }

                var url = '<?php echo esc_urlPlugin::$instance->documents->get_create_new_post_url$typenow ) ); ?>';

                dropdown.insertAdjacentHTML( 'afterbegin', '<a href="' + url + '">Elementor</a>' );
            } );
        </script>
        <?php
    
}

    
/**
     * Init.
     *
     * Initialize Elementor compatibility with external plugins.
     *
     * Fired by `init` action.
     *
     * @since 1.0.0
     * @access public
     * @static
     */
    
public static function init() {
        
// Hotfix for NextGEN Gallery plugin.
        
if ( defined'NGG_PLUGIN_VERSION' ) ) {
            
add_filter'elementor/document/urls/edit', function( $edit_link ) {
                return 
add_query_arg'display_gallery_iframe'''$edit_link );
            } );
        }

        
// Exclude our Library from Yoast SEO plugin.
        
add_filter'wpseo_sitemaps_supported_post_types', [ __CLASS__'filter_library_post_type' ] );
        
add_filter'wpseo_accessible_post_types', [ __CLASS__'filter_library_post_type' ] );
        
add_filter'wpseo_sitemap_exclude_post_type', function( $retval$post_type ) {
            if ( 
Source_Local::CPT === $post_type ) {
                
$retval true;
            }

            return 
$retval;
        }, 
10);

        
// Disable optimize files in Editor from Autoptimize plugin.
        
add_filter'autoptimize_filter_noptimize', function( $retval ) {
            if ( 
Plugin::$instance->editor->is_edit_mode() ) {
                
$retval true;
            }

            return 
$retval;
        } );

        
// Add the description (content) tab for a new product, so it can be edited with Elementor.
        
add_filter'woocommerce_product_tabs', function( $tabs ) {
            if ( ! isset( 
$tabs['description'] ) && Plugin::$instance->preview->is_preview_mode() ) {
                
$post get_post();
                if ( empty( 
$post->post_content ) ) {
                    
$tabs['description'] = [
                        
'title' => esc_html__'Description''elementor' ),
                        
'priority' => 10,
                        
'callback' => 'woocommerce_product_description_tab',
                    ];
                }
            }

            return 
$tabs;
        } );

        
// Fix WC session not defined in editor.
        
if ( class_exists'woocommerce' ) ) {
            
add_action'elementor/editor/before_enqueue_scripts', function() {
                
remove_action'woocommerce_shortcode_before_product_cat_loop''wc_print_notices' );
                
remove_action'woocommerce_before_shop_loop''wc_print_notices' );
                
remove_action'woocommerce_before_single_product''wc_print_notices' );
            } );

            
add_filter'elementor/maintenance_mode/is_login_page', function( $value ) {

                
// Support Woocommerce Account Page.
                
if ( is_account_page() && ! is_user_logged_in() ) {
                    
$value true;
                }
                return 
$value;
            } );
        }

        
// Fix Jetpack Contact Form in Editor Mode.
        
if ( class_exists'Grunion_Editor_View' ) ) {
            
add_action'elementor/editor/before_enqueue_scripts', function() {
                
remove_action'media_buttons''grunion_media_button'999 );
                
remove_action'admin_enqueue_scripts''grunion_enable_spam_recheck' );

                
remove_action'admin_notices', [ 'Grunion_Editor_View''handle_editor_view_js' ] );
                
remove_action'admin_head', [ 'Grunion_Editor_View''admin_head' ] );
            } );
        }

        
// Fix Popup Maker in Editor Mode.
        
if ( class_exists'PUM_Admin_Shortcode_UI' ) ) {
            
add_action'elementor/editor/before_enqueue_scripts', function() {
                
$pum_admin_instance \PUM_Admin_Shortcode_UI::instance();

                
remove_action'print_media_templates', [ $pum_admin_instance'print_media_templates' ] );
                
remove_action'admin_print_footer_scripts', [ $pum_admin_instance'admin_print_footer_scripts' ], 100 );
                
remove_action'wp_ajax_pum_do_shortcode', [ $pum_admin_instance'wp_ajax_pum_do_shortcode' ] );

                
remove_action'admin_enqueue_scripts', [ $pum_admin_instance'admin_enqueue_scripts' ] );

                
remove_filter'pum_admin_var', [ $pum_admin_instance'pum_admin_var' ] );
            } );
        }

        
// Fix Preview URL for https://github.com/wpmudev/domain-mapping plugin
        
if ( class_exists'domain_map' ) ) {
            
add_filter'elementor/document/urls/preview', function( $preview_url ) {
                if ( 
wp_parse_url$preview_urlPHP_URL_HOST ) !== Utils::get_super_global_value$_SERVER'HTTP_HOST' ) ) {
                    
$preview_url \domain_map::utils()->unswap_url$preview_url );
                    
$preview_url add_query_arg( [
                        
'dm' => \Domainmap_Module_Mapping::BYPASS,
                    ], 
$preview_url );
                }

                return 
$preview_url;
            } );
        }

        
// Gutenberg
        
if ( function_exists'gutenberg_init' ) ) {
            
add_action'admin_print_scripts-edit.php', [ __CLASS__'add_new_button_to_gutenberg' ], 11 );
        }
    }

    public static function 
filter_library_post_type$post_types ) {
        unset( 
$post_typesSource_Local::CPT ] );

        return 
$post_types;
    }

    
/**
     * Polylang compatibility.
     *
     * Fix Polylang compatibility with Elementor.
     *
     * @since 2.0.0
     * @access private
     * @static
     */
    
private static function polylang_compatibility() {
        
// Copy elementor data while polylang creates a translation copy
        
add_filter'pll_copy_post_metas', [ __CLASS__'save_polylang_meta' ], 10);
    }

    
/**
     * Save polylang meta.
     *
     * Copy elementor data while polylang creates a translation copy.
     *
     * Fired by `pll_copy_post_metas` filter.
     *
     * @since 1.6.0
     * @access public
     * @static
     *
     * @param array $keys List of custom fields names.
     * @param bool  $sync True if it is synchronization, false if it is a copy.
     * @param int   $from ID of the post from which we copy information.
     * @param int   $to   ID of the post to which we paste information.
     *
     * @return array List of custom fields names.
     */
    
public static function save_polylang_meta$keys$sync$from$to ) {
        
// Copy only for a new post.
        
if ( ! $sync ) {
            
Plugin::$instance->db->copy_elementor_meta$from$to );
        }

        return 
$keys;
    }

    private static function 
yoast_duplicate_post() {
        
add_filter'duplicate_post_excludelist_filter', function( $meta_excludelist ) {
            
$exclude_list = [
                
Document::TYPE_META_KEY,
                
'_elementor_page_assets',
                
'_elementor_controls_usage',
                
'_elementor_css',
                
'_elementor_screenshot',
            ];

            return 
array_merge$meta_excludelist$exclude_list );
        } );

        
add_action'duplicate_post_post_copy', function( $new_post_id$post ) {
            
$original_template_type get_post_meta$post->IDDocument::TYPE_META_KEYtrue );
            if ( ! empty( 
$original_template_type ) ) {
                
update_post_meta$new_post_idDocument::TYPE_META_KEY$original_template_type );
            }
        }, 
10);
    }

    
/**
     * Process post meta before WP importer.
     *
     * Normalize Elementor post meta on import, We need the `wp_slash` in order
     * to avoid the unslashing during the `add_post_meta`.
     *
     * Fired by `wp_import_post_meta` filter.
     *
     * @since 1.0.0
     * @access public
     * @static
     *
     * @param array $post_meta Post meta.
     *
     * @return array Updated post meta.
     */
    
public static function on_wp_import_post_meta$post_meta ) {
        
$is_wp_importer_before_0_7 self::is_wp_importer_before_0_7();

        if ( 
$is_wp_importer_before_0_7 ) {
            foreach ( 
$post_meta as &$meta ) {
                if ( 
'_elementor_data' === $meta['key'] ) {
                    
$meta['value'] = wp_slash$meta['value'] );
                    break;
                }
            }
        }

        return 
$post_meta;
    }

    
/**
     * Is WP Importer Before 0.7
     *
     * Checks if WP Importer is installed, and whether its version is older than 0.7.
     *
     * @return bool
     */
    
public static function is_wp_importer_before_0_7() {
        
$wp_importer get_plugins'/wordpress-importer' );

        if ( ! empty( 
$wp_importer ) ) {
            
$wp_importer_version $wp_importer['wordpress-importer.php']['Version'];

            if ( 
version_compare$wp_importer_version'0.7''<' ) ) {
                return 
true;
            }
        }

        return 
false;
    }

    
/**
     * Process post meta before WXR importer.
     *
     * Normalize Elementor post meta on import with the new WP_importer, We need
     * the `wp_slash` in order to avoid the unslashing during the `add_post_meta`.
     *
     * Fired by `wxr_importer.pre_process.post_meta` filter.
     *
     * @since 1.0.0
     * @access public
     * @static
     *
     * @param array $post_meta Post meta.
     *
     * @return array Updated post meta.
     */
    
public static function on_wxr_importer_pre_process_post_meta$post_meta ) {
        
$is_wp_importer_before_0_7 self::is_wp_importer_before_0_7();

        if ( 
$is_wp_importer_before_0_7 ) {
            if ( 
'_elementor_data' === $post_meta['key'] ) {
                
$post_meta['value'] = wp_slash$post_meta['value'] );
            }
        }

        return 
$post_meta;
    }
}