D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
mihaidwf
/
hope4widows.org
/
wp-content
/
themes
/
neve
/
inc
/
compatibility
/
Filename :
elementor.php
back
Copy
<?php /** * Author: Andrei Baicus <andrei@themeisle.com> * Created on: 05/09/2018 * * @package Neve\Compatibility */ namespace Neve\Compatibility; use Neve\Core\Dynamic_Css; use Neve\Core\Settings\Config; use Neve\Core\Settings\Mods; /** * Class Elementor * * @package Neve\Compatibility */ class Elementor extends Page_Builder_Base { /** * Stores Elementor templates meta * * @var array */ const ELEMENTOR_TEMPLATE_TYPES = [ 'single_product' => [ 'location' => 'single', 'condition_indicator' => 'product', ], 'product_archive' => [ 'location' => 'archive', 'condition_indicator' => 'product_archive', ], ]; /** * Stores if the current page is overriden by Elementor or not (checks by ::is_elementor_template method) according to the location. * * @var array */ private static $cache_cp_has_template = []; /** * Stores Elementor Pro Conditions_Manager instance. * * @var false|\ElementorPro\Modules\ThemeBuilder\Classes\Conditions_Manager */ private static $elementor_conditions_manager = false; /** * Custom global colors theme mod value * * @var array|null */ private static $custom_global_colors = null; /** * Init function. */ public function init() { if ( ! defined( 'ELEMENTOR_VERSION' ) ) { return; } self::$custom_global_colors = self::$custom_global_colors ?? Mods::get( Config::MODS_GLOBAL_CUSTOM_COLORS, [] ); add_filter( 'neve_dynamic_style_output', array( $this, 'fix_links' ), 99, 2 ); add_action( 'wp', array( $this, 'add_theme_builder_hooks' ) ); add_action( 'elementor/editor/before_enqueue_scripts', array( $this, 'maybe_set_page_template' ), 1 ); add_filter( 'rest_request_after_callbacks', [ $this, 'alter_global_colors_in_picker' ], 999, 3 ); add_filter( 'rest_request_after_callbacks', [ $this, 'alter_global_colors_front_end' ], 999, 3 ); add_action( 'wp_enqueue_scripts', array( $this, 'enqueue' ), 100 ); /** * Elementor - Neve Pro Compatibility * add_filter call for "neve_pro_run_wc_view" hook. * * The callback, suspenses some WooCommerce modifications (especially customizer support) by Neve Pro if an Elementor template is applied on the current page. * That gives full capability to Elementor and removes Neve Pro customizations. */ add_filter( 'neve_pro_run_wc_view', array( $this, 'suspend_woo_customizations' ), 10, 2 ); add_action( 'elementor/theme/register_locations', array( $this, 'register_elementor_locations' ) ); } /** * Register Elementor locations. * * @since 4.1 * * @see https://developers.elementor.com/docs/themes/migrating-themes-with-hooks/ * * @param \ElementorPro\Modules\ThemeBuilder\Classes\Locations_Manager $elementor_theme_manager Elementor object. */ public function register_elementor_locations( $elementor_theme_manager ) { $elementor_theme_manager->register_location( 'header', [ 'hook' => 'neve_do_header', 'remove_hooks' => [ 'hfg_header_render' ], ] ); $elementor_theme_manager->register_location( 'footer', [ 'hook' => 'neve_do_footer', 'remove_hooks' => [ 'hfg_footer_render' ], ] ); } /** * Enqueue Global Colors */ public function enqueue() { $colors = $this->get_current_palette_colors(); $css = ':root{'; foreach ( $colors as $slug => $color ) { $css .= '--e-global-color-' . str_replace( '-', '', $slug ) . ':' . $color . ';'; } $css .= '}'; /** * Filters the css with base vars for elementor colors. * * @param string $css Single post page components. * * @since 3.1.0 */ $css = apply_filters( 'neve_elementor_colors', $css ); $css = Dynamic_Css::minify_css( $css ); wp_add_inline_style( 'neve-style', $css ); } /** * Filter rest responses to add Neve Palette Colors to pages using Elementor. * * @param \WP_REST_Response $response request response. * @param array $handler request handler. * @param \WP_REST_Request $request rest request. * @return \WP_REST_Response */ public function alter_global_colors_front_end( $response, $handler, \WP_REST_Request $request ) { $route = $request->get_route(); $rest_to_slugs = [ 'nvprimaryaccent' => 'nv-primary-accent', 'nvsecondaryaccent' => 'nv-secondary-accent', 'nvsitebg' => 'nv-site-bg', 'nvlightbg' => 'nv-light-bg', 'nvdarkbg' => 'nv-dark-bg', 'nvtextcolor' => 'nv-text-color', 'nvtextdarkbg' => 'nv-text-dark-bg', 'nvc1' => 'nv-c-1', 'nvc2' => 'nv-c-2', ]; // introduce custom global colors foreach ( array_keys( self::$custom_global_colors ) as $slug ) { $rest_to_slugs[ str_replace( '-', '', $slug ) ] = $slug; } $rest_id = substr( $route, strrpos( $route, '/' ) + 1 ); if ( ! in_array( $rest_id, array_keys( $rest_to_slugs ), true ) ) { return $response; } $colors = $this->get_current_palette_colors(); $response = new \WP_REST_Response( [ 'id' => esc_attr( $rest_id ), 'title' => $this->get_global_color_prefix() . esc_html( $rest_to_slugs[ $rest_id ] ), 'value' => neve_sanitize_colors( $colors[ $rest_to_slugs[ $rest_id ] ] ), ] ); return $response; } /** * Filter rest responses to add Neve Palette Colors to Elementor. * * @param \WP_REST_Response $response request response. * @param array $handler request handler. * @param \WP_REST_Request $request rest request. * @return \WP_REST_Response */ public function alter_global_colors_in_picker( $response, $handler, \WP_REST_Request $request ) { $route = $request->get_route(); if ( $route !== '/elementor/v1/globals' ) { return $response; } $label_map = [ 'nv-primary-accent' => __( 'Primary Accent', 'neve' ), 'nv-secondary-accent' => __( 'Secondary Accent', 'neve' ), 'nv-site-bg' => __( 'Site Background', 'neve' ), 'nv-light-bg' => __( 'Light Background', 'neve' ), 'nv-dark-bg' => __( 'Dark Background', 'neve' ), 'nv-text-color' => __( 'Text Color', 'neve' ), 'nv-text-dark-bg' => __( 'Text Dark Background', 'neve' ), 'nv-c-1' => __( 'Extra Color 1', 'neve' ), 'nv-c-2' => __( 'Extra Color 2', 'neve' ), ]; foreach ( self::$custom_global_colors as $slug => $args ) { $label_map[ $slug ] = $args['label']; } $colors = $this->get_current_palette_colors(); $data = $response->get_data(); foreach ( $colors as $slug => $color_value ) { $no_hyphens = str_replace( '-', '', $slug ); $data['colors'][ $no_hyphens ] = [ 'id' => esc_attr( $no_hyphens ), 'title' => $this->get_global_color_prefix() . esc_html( $label_map[ $slug ] ), 'value' => neve_sanitize_colors( $color_value ), ]; } $response->set_data( $data ); return $response; } /** * Add support for elementor theme locations. */ public function add_theme_builder_hooks() { if ( ! class_exists( '\ElementorPro\Modules\ThemeBuilder\Module', false ) ) { return; } // Elementor locations compatibility. (This action fires by Elementor Pro) add_action( 'elementor/theme/register_locations', array( $this, 'register_theme_locations' ) ); if ( ! function_exists( 'elementor_theme_do_location' ) ) { return; } // Override theme templates. add_action( 'neve_do_top_bar', array( $this, 'do_header' ), 0 ); add_action( 'neve_do_header', array( $this, 'do_header' ), 0 ); add_action( 'neve_do_footer', array( $this, 'do_footer' ), 0 ); add_action( 'neve_do_404', array( $this, 'do_404' ), 0 ); add_action( 'neve_do_single_post', array( $this, 'do_single_post' ), 0 ); add_action( 'neve_do_single_page', array( $this, 'do_single_page' ), 0 ); add_action( 'neve_page_header', array( $this, 'remove_header_on_page' ), 0 ); } /** * Register Theme Location for Elementor * see https://developers.elementor.com/theme-locations-api/ * * @param \ElementorPro\Modules\ThemeBuilder\Classes\Locations_Manager $manager Elementor object. */ public function register_theme_locations( $manager ) { $manager->register_all_core_location(); } /** * Remove actions for elementor header to act properly. */ public function do_header() { $did_location = elementor_theme_do_location( 'header' ); if ( $did_location ) { remove_all_actions( 'neve_do_top_bar' ); remove_all_actions( 'neve_do_header' ); } } /** * Remove actions for elementor footer to act properly. */ public function do_footer() { $did_location = elementor_theme_do_location( 'footer' ); if ( $did_location ) { remove_all_actions( 'neve_do_footer' ); } } /** * Remove actions for elementor 404 to act properly. */ public function do_404() { if ( ! is_404() ) { return; } $did_location = elementor_theme_do_location( 'single' ); if ( $did_location ) { remove_all_actions( 'neve_do_404' ); } } /** * Remove actions for elementor single post to act properly. */ public function do_single_post() { $did_location = elementor_theme_do_location( 'single' ); if ( $did_location ) { remove_all_actions( 'neve_do_single_post' ); } } /** * Remove actions for elementor single page to act properly. */ public function do_single_page() { $did_location = elementor_theme_do_location( 'single' ); if ( $did_location ) { remove_all_actions( 'neve_do_single_page' ); } } /** * Remove title on single page. */ public function remove_header_on_page() { if ( ! is_singular( 'page' ) ) { return; } if ( elementor_theme_do_location( 'single' ) ) { remove_all_actions( 'neve_page_header' ); } } /** * Check if it page was edited with page builder. * * @param int $pid post id. * * @return bool */ protected function is_edited_with_builder( $pid ) { $post_meta = get_post_meta( $pid, '_elementor_edit_mode', true ); if ( $post_meta === 'builder' ) { return true; } return false; } /** * Fix the underline of links added by neve. * * @param string $css Current css. * @param string $context Context. * * @return string */ public function fix_links( $css, $context = 'frontend' ) { if ( $context !== 'frontend' ) { return $css; } return $css . '.nv-content-wrap .elementor a:not(.button):not(.wp-block-file__button){ text-decoration: none; }'; } /** * Get current palette colors. * * @return array */ private function get_current_palette_colors() { $customizer = get_theme_mod( 'neve_global_colors', neve_get_global_colors_default( true ) ); $active = $customizer['activePalette']; $palettes = $customizer['palettes']; $palette = $palettes[ $active ]; $colors = $palette['colors']; foreach ( self::$custom_global_colors as $slug => $args ) { $colors[ $slug ] = $args['val']; } return $colors; } /** * Get the global colors prefix. * * @return string */ private function get_global_color_prefix() { return ( apply_filters( 'ti_wl_theme_is_localized', false ) ? __( 'Theme', 'neve' ) : 'Neve' ) . ' - '; } /** * Returns Condition_Manager instance of the Elementor Pro. * * @return false|\ElementorPro\Modules\ThemeBuilder\Classes\Conditions_Manager */ private static function get_condition_manager() { if ( self::$elementor_conditions_manager !== false ) { return self::$elementor_conditions_manager; } if ( ! method_exists( '\ElementorPro\Modules\ThemeBuilder\Module', 'instance' ) ) { return false; } $theme_builder = \ElementorPro\Modules\ThemeBuilder\Module::instance(); if ( ! method_exists( $theme_builder, 'get_conditions_manager' ) ) { return false; } self::$elementor_conditions_manager = $theme_builder->get_conditions_manager(); return self::$elementor_conditions_manager; } /** * Checks if the site has Elementor template as independent from current post ID. * The method was designed to use in customizer. ! Do not use it outside of the customizer. * * @param string $elementor_template_type valid types: single_product|product_archive (keys of the self::ELEMENTOR_TEMPLATE_TYPES const array). * @return bool */ public static function has_template( $elementor_template_type ) { if ( ! class_exists( '\ElementorPro\Plugin', false ) ) { return false; } if ( ! array_key_exists( $elementor_template_type, self::ELEMENTOR_TEMPLATE_TYPES ) ) { return false; } $template_meta = self::ELEMENTOR_TEMPLATE_TYPES[ $elementor_template_type ]; $location = $template_meta['location']; $has_indicator = $template_meta['condition_indicator']; // represents second path of the Elementor condition /** * @var \ElementorPro\Modules\ThemeBuilder\Classes\Conditions_Manager $conditions_manager */ $conditions_manager = self::get_condition_manager(); if ( ! is_object( $conditions_manager ) || ! method_exists( $conditions_manager, 'get_cache' ) ) { return false; } /** * @var \ElementorPro\Modules\ThemeBuilder\Classes\Conditions_Cache $instance_cond_cache */ $instance_cond_cache = $conditions_manager->get_cache(); if ( ! method_exists( $instance_cond_cache, 'get_by_location' ) ) { return false; } $templates = $instance_cond_cache->get_by_location( $location ); foreach ( $templates as $template_conditions_arr ) { /** @var string $condition_path specifies the condition such as include/product_archive OR exclude/product_archive/product_search OR include/product/in_product_cat/18 etc. */ foreach ( $template_conditions_arr as $condition_path ) { $condition_parts = explode( '/', $condition_path ); if ( $condition_parts[0] !== 'include' ) { continue; } if ( $condition_parts[1] === $has_indicator ) { return true; } } } return false; } /** * Is the current page has an elementor template. Looks if the an Elementor template is applied to the current page or not. * * @param string $elementor_template_type valid types: single_product|product_archive (keys of the self::ELEMENTOR_TEMPLATE_TYPES const array). To available params; see keys of the self::ELEMENTOR_TEMPLATE_TYPES array. * @return bool */ public static function is_elementor_template( $elementor_template_type ) { if ( ! class_exists( '\ElementorPro\Plugin', false ) ) { return false; } if ( ! array_key_exists( $elementor_template_type, self::ELEMENTOR_TEMPLATE_TYPES ) ) { return false; } $location = self::ELEMENTOR_TEMPLATE_TYPES[ $elementor_template_type ]['location']; if ( array_key_exists( $elementor_template_type, self::$cache_cp_has_template ) ) { return self::$cache_cp_has_template[ $location ]; } /** * @var \ElementorPro\Modules\ThemeBuilder\Classes\Conditions_Manager $conditions_manager */ $conditions_manager = self::get_condition_manager(); if ( ! is_object( $conditions_manager ) || ! method_exists( $conditions_manager, 'get_location_templates' ) ) { return false; } $templates = $conditions_manager->get_location_templates( $location ); self::$cache_cp_has_template[ $location ] = ( count( $templates ) > 0 ); return self::$cache_cp_has_template[ $location ]; } /** * Detect if a page is using the checkout widget. * * @return bool */ public static function is_elementor_checkout() { if ( ! class_exists( 'WooCommerce' ) ) { return false; } if ( ! function_exists( 'is_checkout' ) && ! is_checkout() ) { return false; } if ( ! class_exists( '\ElementorPro\Plugin', false ) ) { return false; } if ( array_key_exists( 'checkout', self::$cache_cp_has_template ) ) { return self::$cache_cp_has_template['checkout']; } $is_elementor_checkout = false; $page_id = get_the_ID(); $elementor_data = get_post_meta( $page_id, '_elementor_data', true ); if ( ! empty( $elementor_data ) && is_string( $elementor_data ) && ( strpos( $elementor_data, 'woocommerce-checkout-page' ) !== false ) ) { $is_elementor_checkout = true; } self::$cache_cp_has_template['checkout'] = $is_elementor_checkout; return self::$cache_cp_has_template['checkout']; } /** * Conditionally suspense Woocommerce moditifications by Neve Pro if Elementor template applies to current page. * * @param bool $should_load Current loading status. * @param string $class_name Fully class name that applies the Woo Modification. * @return bool */ public function suspend_woo_customizations( $should_load, $class_name ) { switch ( $class_name ) { case 'Neve_Pro\Modules\Woocommerce_Booster\Views\Shop_Page': $elementor_template_type = 'product_archive'; break; case 'Neve_Pro\Modules\Woocommerce_Booster\Views\Shop_Product': $elementor_template_type = is_single() ? 'single_product' : 'product_archive'; // Sometimes shop_product is used inside of the single product as related products etc. break; case 'Neve_Pro\Modules\Woocommerce_Booster\Views\Single_Product_Video': case 'Neve_Pro\Modules\Woocommerce_Booster\Views\Single_Product': $elementor_template_type = 'single_product'; break; default: return $should_load; } // Does the current page is overridden by an Elementor template? $elementor_overrides = self::is_elementor_template( $elementor_template_type ); return ! $elementor_overrides; } }