HEX
Server: Apache
System: Linux webd006.cluster128.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: zwafgyp (177615)
PHP: 7.4.33
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/zwafgyp/lacalita/wp-content/plugins/rey-core/inc/modules/header-fixed/base.php
<?php
namespace ReyCore\Modules\HeaderFixed;

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

class Base extends \ReyCore\Modules\ModuleBase {

	const ASSET_HANDLE = 'reycore-fixedheader';

	public function __construct()
	{
		parent::__construct();

		add_action( 'init', [$this, 'init']);
		add_action( 'reycore/customizer/control=header_fixed_disable_mobile', [ $this, 'customizer_add_options' ], 10, 2 );
	}

	function is_enabled(){
		return get_theme_mod('header_position', 'rel') === 'fixed';
	}

	function shrink_is_enabled(){
		return $this->is_enabled() && get_theme_mod('header_fixed_shrink', false) === true;
	}

	public function init(){

		if( !$this->is_enabled() ){
			return;
		}

		add_action( 'reycore/assets/register_scripts', [$this, 'register_assets']);
		add_action( 'rey/header/content', [ $this, 'load_scripts' ] );
		add_filter( 'rey/header/header_classes', [$this, 'header_classes']);
		add_filter( 'reycore/cover/css_classes', [$this, 'cover_classes']);
		add_filter( 'rey/main_script_params', [ $this, 'script_params'] );
		add_action( 'elementor/element/section/section_advanced/after_section_end', [$this, 'elementor_section_fixed_header_settings']);
		add_action( 'elementor/element/container/section_layout/after_section_end', [$this, 'elementor_section_fixed_header_settings']);
		add_action( 'elementor/element/column/section_advanced/after_section_end', [$this, 'elementor_column_fixed_header_settings']);
		add_action( 'elementor/element/reycore-header-logo/section_settings/after_section_end', [$this, 'elementor_header_logo_fixed_header_settings']);
		add_action( 'elementor/element/reycore-header-logo/section_styles/after_section_end', [$this, 'elementor_header_logo_fixed_header_styles']);
		add_action( 'elementor/frontend/section/before_render', [$this, 'elementor_element_before_render'], 10, 2);
		add_action( 'elementor/frontend/container/before_render', [$this, 'elementor_element_before_render']);
		add_action( 'elementor/frontend/column/before_render', [$this, 'elementor_element_before_render']);
		add_action( 'elementor/frontend/widget/before_render', [$this, 'elementor_header_logo_before_render']);
		add_action( 'elementor/editor/after_enqueue_scripts', [ $this, 'editor_styles'] );

		if( get_theme_mod('header_fixed_shrink_top_only', false) ){
			add_filter( 'wp_get_custom_css', function($css){
				return $css . 'body.header-overlay--is-opened{overflow: hidden}';
			});
		}

	}

	public function script_params($params)
	{
		$params['fixed_header_activation_point'] = 0;
		$params['fixed_header_lazy'] = 3000;

		if( get_theme_mod('header_fixed_shrink_top_only', false) ){
			$params['core']['js_params']['dir_aware'] = true;
		}

		return $params;
	}

	public function header_classes($classes){

		if( $classes['position'] === 'header-pos--fixed' && apply_filters('reycore/header_fixed/load_relative_first', true) ){

			$overlapping_classes = reycore__header_fixed_overlapping_classes();

			foreach ($overlapping_classes as $key => $value) {
				// empty = it's not overlapping.
				// in this case, when it's not overlapping,
				// adds a custom class that is loading the header as relative,
				// to prevent content shift until the header helper height is calculated,
				// and afterwards it switches to fixed position.
				if( empty($value) ){
					$classes['fixed_assist_' . $key] = '--loading-fixed-' . $key;
				}
			}
		}

		if( $this->shrink_is_enabled() ){
			$classes['fixed-shrink'] = '--fixed-shrinking';
		}

		if( get_theme_mod('header_fixed_shrink_top_only', false) ){
			$classes['upwards'] = '--upwards';
		}

		return $classes;
	}


	public function cover_classes($classes){

		if( $this->shrink_is_enabled() ){
			$classes['fixed-shrink'] = '--fixed-shrinking';
		}

		return $classes;
	}


	function elementor_section_fixed_header_settings( $element ){

		$element->start_controls_section(
			'section_rey_fixed_header',
			[
				'label' => __( 'Sticky Header Settings', 'rey-core' ) . \ReyCore\Elementor\Helper::rey_badge(),
				'tab' => \Elementor\Controls_Manager::TAB_ADVANCED,
				'hide_in_inner' => true,
			]
		);

		if( ! $this->is_enabled() ):

			$element->add_control(
				'notice__rey_fixed_header',
				[
					'type' => \Elementor\Controls_Manager::RAW_HTML,
					'raw' => __( 'To use these options, please access <strong>Customizer > Header > General</strong>, and make sure to enable <strong>Fixed header</strong>.', 'rey-core' ),
					'content_classes' => 'rey-raw-html',
				]
			);

		else:

			$element->add_control(
				'rey_hide_on_scroll',
				[
					'label' => esc_html__( 'Hide on scroll', 'rey-core' ),
					'type' => \Elementor\Controls_Manager::SWITCHER,
					'default' => '',
				]
			);

			$element->add_control(
				'rey_disable_sticky_transitions',
				[
					'label' => esc_html__( 'Disable Transitions', 'rey-core' ),
					'type' => \Elementor\Controls_Manager::SWITCHER,
					'default' => '',
					'prefix_class' => '--disable-transitions-',
				]
			);

			$element->add_control(
				'rey_show_header_hover',
				[
					'label' => esc_html__( 'Show on Header hover', 'rey-core' ),
					'type' => \Elementor\Controls_Manager::SWITCHER,
					'default' => '',
					'condition' => [
						'rey_hide_on_scroll!' => '',
					],
					'prefix_class' => '--show-hover-',
				]
			);

			if( $this->shrink_is_enabled() ):

				$element->add_control(
					'rey_scrolled_title',
					[
					'label' => esc_html__( 'ANIMATED HEADER ON SCROLL OPTIONS', 'rey-core' ),
						'type' => \Elementor\Controls_Manager::HEADING,
						'separator' => 'before',
						'condition' => [
							'rey_hide_on_scroll' => '',
						],
					]
				);

				$element->add_control(
					'rey_scrolled_force_height',
					[
						'label' => __( 'Force <strong>Exact Height</strong>', 'rey-core' ),
						'description' => __( 'Instead of min-height, this option will force a height.', 'rey-core' ),
						'type' => \Elementor\Controls_Manager::SWITCHER,
						'default' => '',
						'condition' => [
							'rey_hide_on_scroll' => '',
						],
						'prefix_class' => '--forced-height-',
					]
				);

				$element->add_responsive_control(
					'rey_scrolled_height__true',
					[
						'label' => __( 'Height (px)', 'rey-core' ),
						'type' => \Elementor\Controls_Manager::SLIDER,
						'range' => [
							'px' => [
								'max' => 400,
								'min' => 0,
								'step' => 1,
							],
						],
						'selectors' => [
							'.--shrank {{WRAPPER}}.--forced-height-yes' => '--shrank-forced-height: {{SIZE}}px',
						],
						'condition' => [
							'rey_hide_on_scroll' => '',
							'rey_scrolled_force_height' => 'yes',
						],
					]
				);

				$element->add_responsive_control(
					'rey_scrolled_height',
					[
						'label' => __( 'Min-Height (px)', 'rey-core' ),
						'description' => __( 'Adjust if this section height is set to Minimum height, otherwise it won\'t transition.', 'rey-core' ),
						'type' => \Elementor\Controls_Manager::SLIDER,
						'range' => [
							'px' => [
								'max' => 400,
								'min' => 0,
								'step' => 1,
							],
						],
						'selectors' => [
							'.--shrank {{WRAPPER}}' => 'min-height: {{SIZE}}px;',
						],
						'condition' => [
							'rey_hide_on_scroll' => '',
							'rey_scrolled_force_height' => '',
						],
					]
				);

				$element->add_responsive_control(
					'rey_scrolled_pt',
					[
						'label' => __( 'Top Padding (px)', 'rey-core' ),
						'type' => \Elementor\Controls_Manager::SLIDER,
						'range' => [
							'px' => [
								'max' => 100,
								'min' => 0,
								'step' => 1,
							],
						],
						'selectors' => [
							'.--shrank {{WRAPPER}}' => 'padding-top: {{SIZE}}px; --padding-top: {{SIZE}}px;',
						],
						'condition' => [
							'rey_hide_on_scroll' => '',
							'rey_scrolled_force_height' => '',
						],
					]
				);

				$element->add_responsive_control(
					'rey_scrolled_pb',
					[
						'label' => __( 'Bottom Padding (px)', 'rey-core' ),
						'type' => \Elementor\Controls_Manager::SLIDER,
						'range' => [
							'px' => [
								'max' => 100,
								'min' => 0,
								'step' => 1,
							],
						],
						'selectors' => [
							'.--shrank {{WRAPPER}}' => 'padding-bottom: {{SIZE}}px;--padding-bottom: {{SIZE}}px;',
						],
						'condition' => [
							'rey_hide_on_scroll' => '',
							'rey_scrolled_force_height' => '',
						],
					]
				);


				$element->add_control(
					'rey_scrolled_bg',
					[
						'label' => esc_html__( 'Background-color', 'rey-core' ),
						'type' => \Elementor\Controls_Manager::COLOR,
						'selectors' => [
							'.--shrank {{WRAPPER}}' => 'background-color: {{VALUE}}',
						],
						'condition' => [
							'rey_hide_on_scroll' => '',
						],
						'separator' => 'before'
					]
				);

				$element->add_control(
					'rey_scrolled_text_color',
					[
						'label' => esc_html__( 'Text Color', 'rey-core' ),
						'type' => \Elementor\Controls_Manager::COLOR,
						'selectors' => [
							'.--shrank {{WRAPPER}}' => 'color: {{VALUE}}',
						],
						'condition' => [
							'rey_hide_on_scroll' => '',
						],
					]
				);

				$element->add_control(
					'rey_scrolled_link_color',
					[
						'label' => esc_html__( 'Link Color', 'rey-core' ),
						'type' => \Elementor\Controls_Manager::COLOR,
						'selectors' => [
							'.--shrank {{WRAPPER}} a' => 'color: {{VALUE}}',
						],
						'condition' => [
							'rey_hide_on_scroll' => '',
						],
					]
				);

				$element->add_control(
					'rey_scrolled_link_hover_color',
					[
						'label' => esc_html__( 'Link Hover Color', 'rey-core' ),
						'type' => \Elementor\Controls_Manager::COLOR,
						'selectors' => [
							'.--shrank {{WRAPPER}} a:hover' => 'color: {{VALUE}}',
						],
						'condition' => [
							'rey_hide_on_scroll' => '',
						],
					]
				);

			else:

				$element->add_control(
					'notice__rey_fixed_header_shrink',
					[
						'type' => \Elementor\Controls_Manager::RAW_HTML,
						'raw' => sprintf( __( 'To use these options, please access <a href="%s" target="_blank"><strong>Customizer > Header > General</strong></a>, and make sure to enable <strong>Animate Header on Scroll</strong>.', 'rey-core' ), add_query_arg( ['autofocus[control]' => 'header_fixed_shrink'], admin_url( 'customize.php' ) ) ),
						'content_classes' => 'rey-raw-html',
					]
				);
			endif;


		endif;

		$element->end_controls_section();

	}

	function elementor_column_fixed_header_settings( $element ){

		if( ! $this->is_enabled() ){
			return;
		}

		$element->start_controls_section(
			'section_rey_fixed_header',
			[
				'label' => __( 'Sticky Header Settings', 'rey-core' )  . \ReyCore\Elementor\Helper::rey_badge(),
				'tab' => \Elementor\Controls_Manager::TAB_ADVANCED,
				'hide_in_inner' => true,
			]
		);

		$element->add_control(
			'rey_hide_on_scroll',
			[
				'label' => esc_html__( 'Hide on scroll', 'rey-core' ),
				'type' => \Elementor\Controls_Manager::SWITCHER,
				'default' => '',
			]
		);

		$element->add_control(
			'rey_hide_on_scroll_mobile',
			[
				'label' => esc_html__( 'Hide on scroll (Mobile)', 'rey-core' ),
				'type' => \Elementor\Controls_Manager::SELECT,
				'default' => '',
				'options' => [
					''  => esc_html__( 'Inherit', 'rey-core' ),
					'yes'  => esc_html__( 'Yes', 'rey-core' ),
					'no'  => esc_html__( 'No', 'rey-core' ),
				],
			]
		);

		$element->end_controls_section();

	}

	function elementor_header_logo_fixed_header_settings( $element ){

		if( ! $this->is_enabled() ){
			return;
		}

		$element->start_controls_section(
			'section_logo_fixed_content',
			[
				'label' => __( 'Logo in "Sticked" mode', 'rey-core' ),
				'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
			]
		);

		$element->add_control(
			'notice__logo_fixed_content',
			[
				'type' => \Elementor\Controls_Manager::RAW_HTML,
				'raw' => __( 'These settings apply to the Logo when the Header is in "Sticked" mode (after the page has been scrolled). Not recommended to be customised.', 'rey-core' ),
				'content_classes' => 'elementor-descriptor',
			]
		);

		$element->add_control(
			'logo_fixed',
			[
				'label' => __( 'Custom Logo Image', 'rey-core' ),
				'type' => \Elementor\Controls_Manager::MEDIA,
				'default' => [],
			]
		);

		$element->add_control(
			'logo_mobile_fixed',
			[
				'label' => __( 'Custom Mobile Logo', 'rey-core' ),
				'type' => \Elementor\Controls_Manager::MEDIA,
				'default' => [],
			]
		);

		$element->end_controls_section();

	}

	/**
	 * Logo styles
	 */
	function elementor_header_logo_fixed_header_styles( $element ){

		if( ! $this->is_enabled() ){
			return;
		}

		$element->start_controls_section(
			'section_logo_fixed_styles',
			[
				'label' => __( 'Styles in "Sticked" mode', 'rey-core' ),
				'tab' => \Elementor\Controls_Manager::TAB_STYLE,
			]
		);

		$element->add_control(
			'notice__logo_fixed_styles',
			[
				'type' => \Elementor\Controls_Manager::RAW_HTML,
				'raw' => __( 'These settings apply to the Logo when the Header is in "Sticked" mode (after the page has been scrolled). Not recommended to be customised.', 'rey-core' ),
				'content_classes' => 'elementor-descriptor',
			]
		);

		$element->add_responsive_control(
			'logo_fixed_width',
			[
				'label' => __( 'Width', 'rey-core' ),
				'type' => \Elementor\Controls_Manager::SLIDER,
				'default' => [
					'unit' => '%',
				],
				'tablet_default' => [
					'unit' => '%',
				],
				'mobile_default' => [
					'unit' => '%',
				],
				'size_units' => [ '%', 'px', 'vw' ],
				'range' => [
					'%' => [
						'min' => 1,
						'max' => 100,
					],
					'px' => [
						'min' => 1,
						'max' => 1000,
					],
					'vw' => [
						'min' => 1,
						'max' => 100,
					],
				],
				'selectors' => [
					'.rey-siteHeader.--scrolled {{WRAPPER}} .rey-siteLogo img, .rey-siteHeader.--scrolled {{WRAPPER}} .rey-siteLogo .custom-logo' => 'width: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$element->add_responsive_control(
			'logo_fixed_space',
			[
				'label' => __( 'Max Width', 'rey-core' ) . ' (%)',
				'type' => \Elementor\Controls_Manager::SLIDER,
				'default' => [
					'unit' => '%',
				],
				'tablet_default' => [
					'unit' => '%',
				],
				'mobile_default' => [
					'unit' => '%',
				],
				'size_units' => [ '%' ],
				'range' => [
					'%' => [
						'min' => 1,
						'max' => 100,
					],
				],
				'selectors' => [
					'.rey-siteHeader.--scrolled {{WRAPPER}} .rey-siteLogo img, .rey-siteHeader.--scrolled {{WRAPPER}} .rey-siteLogo .custom-logo' => 'max-width: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$element->add_responsive_control(
			'logo_fixed_max_height',
			[
				'label' => __( 'Max Height', 'rey-core' ) . ' (px)',
				'type' => \Elementor\Controls_Manager::SLIDER,
				'size_units' => [ 'px' ],
				'range' => [
					'px' => [
						'min' => 1,
						'max' => 300,
					],
				],
				'selectors' => [
					'.rey-siteHeader.--scrolled {{WRAPPER}} .rey-siteLogo img, .rey-siteHeader.--scrolled {{WRAPPER}} .rey-siteLogo .custom-logo' => 'max-height: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$element->end_controls_section();

	}

	function elementor_element_before_render( $element, $element_type = '' )
	{
		// inner section
		if( true === $element_type ){
			return;
		}

		if( ! $this->is_enabled() ){
			return;
		}

		$settings = $element->get_settings();

		if( isset($settings['rey_hide_on_scroll']) && $settings['rey_hide_on_scroll'] === 'yes' ){
			$element->add_render_attribute( '_wrapper', 'class', 'hide-on-scroll' );
		}

		if( isset($settings['rey_hide_on_scroll_mobile']) && $settings['rey_hide_on_scroll_mobile'] !== '' ){
			$element->add_render_attribute( '_wrapper', 'data-hide-on-scroll-mobile', esc_attr($settings['rey_hide_on_scroll_mobile']) );
		}

	}

	function elementor_header_logo_before_render( $element )
	{
		if( ! $this->is_enabled() ){
			return;
		}

		if( $element->get_unique_name() !== 'reycore-header-logo' ){
			return;
		}

		$settings = $element->get_settings();

		$attrs = [];

		if( isset($settings['logo_fixed']) && isset($settings['logo_fixed']['url']) && $logo_url = $settings['logo_fixed']['url'] ){
			$attrs['data-sticky-logo'] = esc_attr($logo_url);
		}

		if( isset($settings['logo_mobile_fixed']) && isset($settings['logo_mobile_fixed']['url']) && $mobile_logo_url = $settings['logo_mobile_fixed']['url'] ){
			$attrs['data-sticky-mobile-logo'] = esc_attr($mobile_logo_url);
		}

		if( !empty($attrs) ){
			$element->add_render_attribute( '_wrapper', $attrs );
		}

	}

	public function register_assets($assets){

		$assets->register_asset('styles', [
			self::ASSET_HANDLE => [
				'src'      => self::get_path( basename( __DIR__ ) ) . '/style.css',
				'deps'     => [],
				'version'  => REY_CORE_VERSION,
				'priority' => 'low'
			]
		]);

		$assets->register_asset('scripts', [
			self::ASSET_HANDLE => [
				'src'     => self::get_path( basename( __DIR__ ) ) . '/script.js',
				'deps'    => [],
				'version' => REY_CORE_VERSION,
			]
		]);
	}

	public function load_scripts(){
		reycore_assets()->add_scripts(self::ASSET_HANDLE);
		reycore_assets()->add_styles(self::ASSET_HANDLE);
	}

	public function editor_styles(){

		$custom_css = '.elementor-control-section_rey_fixed_header{ display: none; }';
		$custom_css .= 'html[data-post-type="rey-global-sections"][data-gs="header"] .elementor-control-section_rey_fixed_header{ display: block; }';

		wp_add_inline_style( 'rey-core-elementor-editor-css', $custom_css);

	}

	public function customizer_add_options($control_args, $section){

		$section->add_control( [
			'type'        => 'toggle',
			'settings'    => 'header_fixed_shrink',
			'label'       => esc_html__( 'Animate Header on Scroll', 'rey-core' ),
			'help' => [
				sprintf( __( 'If enabled, the header will animate (shrink) on page scroll. Read more here on <a href="%s" target="_blank">how you can customize</a>. If you want more flexibility, such as a totally different header when sticky, consider using <a href="%s" target="_blank">Sticky Top Content - Global sections</a>.', 'rey-core' ), reycore__support_url('kb/create-customize-a-shrinking-sticky-header/'), reycore__support_url('kb/create-a-custom-sticky-header/') ),
				// 'size'      => 290,
				'clickable' => true,
			],
			'default'     => false,
			'active_callback' => [
				[
					'setting'  => 'header_layout_type',
					'operator' => '!=',
					'value'    => 'none',
				],
				[
					'setting'  => 'header_position',
					'operator' => '==',
					'value'    => 'fixed',
				],
			],
		] );

		$section->add_control( [
			'type'        => 'toggle',
			'settings'    => 'header_fixed_shrink_top_only',
			'label'       => esc_html__( 'Show only when scrolling upwards', 'rey-core' ),
			// 'description' => __( 'Will show the Fixed header when scrolling .', 'rey-core' ),
			'default'     => false,
			'active_callback' => [
				[
					'setting'  => 'header_layout_type',
					'operator' => '!=',
					'value'    => 'none',
				],
				[
					'setting'  => 'header_position',
					'operator' => '==',
					'value'    => 'fixed',
				],
			],
			'rey_group_end' => true
		] );

		/*

		Issues with hidden sections.

		$section->add_control( [
			'type'        => 'rey-number',
			'settings'    => 'header_fixed_activation_point',
			'label'       => esc_html__( 'Activation Point', 'rey-core' ),
			'default'     => 0,
			'choices'     => [
				'min'  => 0,
				'max'  => 400,
				'step' => 1,
			],
			'active_callback' => [
				[
					'setting'  => 'header_layout_type',
					'operator' => '!=',
					'value'    => 'none',
				],
				[
					'setting'  => 'header_position',
					'operator' => '==',
					'value'    => 'fixed',
				],
				[
					'setting'  => 'header_fixed_shrink',
					'operator' => '==',
					'value'    => true,
				],
			],
		] );

		*/

	}

	public static function __config(){
		return [
			'id' => basename(__DIR__),
			'title' => esc_html_x('Sticky Header Support', 'Module name', 'rey-core'),
			'description' => esc_html_x('Adds more controls for Sticky (fixed) header, such as animations and content controls.', 'Module description', 'rey-core'),
			'icon'        => '',
			'categories'  => ['frontend'],
			'keywords'    => [],
			'help'        => reycore__support_url('kb/create-customize-a-shrinking-sticky-header'),
			'video' => true,
		];
	}

	public function module_in_use(){
		return $this->shrink_is_enabled();
	}


}