HEX
Server: Apache
System: Linux uws7-179.cafe24.com 3.10.0-1160.119.1p.el7.x86_64 #1 SMP Thu Sep 11 14:15:01 KST 2025 x86_64
User: medikors (1589)
PHP: 7.3.1p1
Disabled: mysql_pconnect
Upload Files
File: /medikors/www/eng/wp-content/plugins/happy-elementor-addons/extensions/background-overlay.php
<?php
namespace Happy_Addons\Elementor\Extension;

use Elementor\Controls_Manager;
use Elementor\Element_Base;
use Elementor\Group_Control_Background;
use Elementor\Group_Control_Css_Filter;

defined( 'ABSPATH' ) || die();

class Background_Overlay {

    public static function init() {
        add_action( 'elementor/element/common/_section_background/after_section_end', [__CLASS__, 'add_section'] );
        add_action( 'elementor/element/after_add_attributes', [__CLASS__, 'add_attributes'] );
    }

    public static function add_attributes( Element_Base $element ) {
        if ( in_array( $element->get_name(), [ 'column', 'section' ] ) ) {
            return;
        }

        if ( \Elementor\Plugin::instance()->editor->is_edit_mode() ) {
            return;
        }

        $settings = $element->get_settings_for_display();

        $overlay_bg = isset( $settings['_ha_background_overlay_background'] ) ? $settings['_ha_background_overlay_background'] : '';
        $overlay_hover_bg = isset( $settings['_ha_background_overlay_hover_background'] ) ? $settings['_ha_background_overlay_hover_background'] : '';

        $has_background_overlay = ( in_array( $overlay_bg, [ 'classic', 'gradient' ], true ) ||
            in_array( $overlay_hover_bg, [ 'classic', 'gradient' ], true ) );

        if ( $has_background_overlay ) {
            $element->add_render_attribute( '_wrapper', 'class', 'ha-has-background-overlay' );
        }
    }

    public static function add_section( Element_Base $element ) {
        $element->start_controls_section(
            '_ha_section_background_overlay',
            [
                'label' => __( 'Background Overlay', 'happy-elementor-addons' ),
                'tab' => Controls_Manager::TAB_ADVANCED,
                'condition' => [
                    '_background_background' => [ 'classic', 'gradient' ],
                ],
            ]
        );

        $element->start_controls_tabs( '_ha_tabs_background_overlay' );

        $element->start_controls_tab(
            '_ha_tab_background_overlay_normal',
            [
                'label' => __( 'Normal', 'happy-elementor-addons' ),
            ]
        );

        $element->add_group_control(
            Group_Control_Background::get_type(),
            [
                'name' => '_ha_background_overlay',
                'selector' => '{{WRAPPER}}.ha-has-background-overlay > .elementor-widget-container:before',
            ]
        );

        $element->add_control(
            '_ha_background_overlay_opacity',
            [
                'label' => __( 'Opacity', 'happy-elementor-addons' ),
                'type' => Controls_Manager::SLIDER,
                'default' => [
                    'size' => .5,
                ],
                'range' => [
                    'px' => [
                        'max' => 1,
                        'step' => 0.01,
                    ],
                ],
                'selectors' => [
                    '{{WRAPPER}}.ha-has-background-overlay > .elementor-widget-container:before' => 'opacity: {{SIZE}};',
                ],
                'condition' => [
                    '_ha_background_overlay_background' => [ 'classic', 'gradient' ],
                ],
            ]
        );

        $element->add_group_control(
            Group_Control_Css_Filter::get_type(),
            [
                'name' => '_ha_css_filters',
                'selector' => '{{WRAPPER}}.ha-has-background-overlay > .elementor-widget-container:before',
            ]
        );

        $element->add_control(
            '_ha_overlay_blend_mode',
            [
                'label' => __( 'Blend Mode', 'happy-elementor-addons' ),
                'type' => Controls_Manager::SELECT,
                'options' => [
                    '' => __( 'Normal', 'happy-elementor-addons' ),
                    'multiply' => 'Multiply',
                    'screen' => 'Screen',
                    'overlay' => 'Overlay',
                    'darken' => 'Darken',
                    'lighten' => 'Lighten',
                    'color-dodge' => 'Color Dodge',
                    'saturation' => 'Saturation',
                    'color' => 'Color',
                    'luminosity' => 'Luminosity',
                ],
                'selectors' => [
                    '{{WRAPPER}}.ha-has-background-overlay > .elementor-widget-container:before' => 'mix-blend-mode: {{VALUE}}',
                ],
            ]
        );

        $element->end_controls_tab();

        $element->start_controls_tab(
            '_ha_tab_background_overlay_hover',
            [
                'label' => __( 'Hover', 'happy-elementor-addons' ),
            ]
        );

        $element->add_group_control(
            Group_Control_Background::get_type(),
            [
                'name' => '_ha_background_overlay_hover',
                'selector' => '{{WRAPPER}}.ha-has-background-overlay:hover > .elementor-widget-container:before',
            ]
        );

        $element->add_control(
            '_ha_background_overlay_hover_opacity',
            [
                'label' => __( 'Opacity', 'happy-elementor-addons' ),
                'type' => Controls_Manager::SLIDER,
                'default' => [
                    'size' => .5,
                ],
                'range' => [
                    'px' => [
                        'max' => 1,
                        'step' => 0.01,
                    ],
                ],
                'selectors' => [
                    '{{WRAPPER}}.ha-has-background-overlay:hover > .elementor-widget-container:before' => 'opacity: {{SIZE}};',
                ],
                'condition' => [
                    '_ha_background_overlay_hover_background' => [ 'classic', 'gradient' ],
                ],
            ]
        );

        $element->add_group_control(
            Group_Control_Css_Filter::get_type(),
            [
                'name' => '_ha_css_filters_hover',
                'selector' => '{{WRAPPER}}.ha-has-background-overlay:hover > .elementor-widget-container:before',
            ]
        );

        $element->add_control(
            '_ha_background_overlay_hover_transition',
            [
                'label' => __( 'Transition Duration', 'happy-elementor-addons' ),
                'type' => Controls_Manager::SLIDER,
                'default' => [
                    'size' => 0.3,
                ],
                'range' => [
                    'px' => [
                        'max' => 3,
                        'step' => 0.1,
                    ],
                ],
                'separator' => 'before',
                'selectors' => [
                    '{{WRAPPER}}.ha-has-background-overlay > .elementor-widget-container:before' => 'transition: background {{SIZE}}s;',
                ]
            ]
        );

        $element->end_controls_tab();

        $element->end_controls_tabs();

        $element->end_controls_section();
    }
}