HEX
Server: Apache
System: Linux vps-3158868-x.dattaweb.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User: emerlux (1185)
PHP: 8.3.1
Disabled: system, shell, exec, system_exec, shell_exec, mysql_pconnect, passthru, popen, proc_open, proc_close, proc_nice, proc_terminate, proc_get_status, escapeshellarg, escapeshellcmd, eval
Upload Files
File: /home/emerlux/public_html/wp-content/plugins/porto-functionality/elementor/partials/addon.php
<?php
if ( ! defined( 'ABSPATH' ) ) {
	die();
}

/**
 *
 * Register elementor custom addons for elements and widgets.
 *
 * @since 2.2.0
 */

use Elementor\Controls_Manager;

/* Mouse Parallax Options */
if ( ! function_exists( 'porto_elementor_mpx_controls' ) ) :
	function porto_elementor_mpx_controls( $self ) {
		if ( ! ( class_exists( 'Porto_Elementor_Container' ) && $self instanceof Porto_Elementor_Container ) ) {
			$self->start_controls_section(
				'_porto_section_floating_effect',
				array(
					'label' => __( 'Floating Effects', 'porto-functionality' ),
					'tab'   => Porto_Elementor_Editor_Custom_Tabs::TAB_CUSTOM,
				)
			);
				$self->add_control(
					'mouse_parallax',
					array(
						'label'       => esc_html__( 'Mouse Parallax?', 'porto-functionality' ),
						'type'        => Controls_Manager::SWITCHER,
						'description' => sprintf( esc_html__( 'Animate your elements chasing your mouse move. For more information, read this %1$sarticle%2$s.', 'porto-functionality' ), '<a href="https://www.portotheme.com/wordpress/porto/documentation/mouse-parallax/" target="_blank">', '</a>' ),
					)
				);
	
				$self->add_control(
					'mouse_parallax_inverse',
					array(
						'label'       => esc_html__( 'Mouse Parallax Inverse?', 'porto-functionality' ),
						'type'        => Controls_Manager::SWITCHER,
						'description' => esc_html__( 'Animate your elements inversely chasing your mouse move.', 'porto-functionality' ),
						'condition'   => array(
							'mouse_parallax' => 'yes',
						),
					)
				);
	
				$self->add_control(
					'mouse_parallax_speed',
					array(
						'label'       => esc_html__( 'Mouse Parallax Speed', 'porto-functionality' ),
						'type'        => Controls_Manager::SLIDER,
						'description' => esc_html__( 'Control your elements mouse chasing speed.', 'porto-functionality' ),
						'default'     => array(
							'size' => '0.5',
						),
						'range'       => array(
							'' => array(
								'step' => 0.1,
								'min'  => 0,
								'max'  => 5,
							),
						),
						'condition'   => array(
							'mouse_parallax' => 'yes',
						),
					)
				);
	
			$self->end_controls_section();
		}

		if ( ( class_exists( 'Porto_Elementor_Section' ) && $self instanceof Porto_Elementor_Section ) || ( class_exists( 'Porto_Elementor_Container' ) && $self instanceof Porto_Elementor_Container ) ) {
			//$self->get_data( 'isInner' )
			$self->start_controls_section(
				'_porto_section_scroll_parallax_effect',
				array(
					'label' => __( 'Scroll Parallax', 'porto-functionality' ),
					'tab'   => Porto_Elementor_Editor_Custom_Tabs::TAB_CUSTOM,
				)
			);

			$self->add_control(
				'scroll_parallax',
				array(
					'label'       => esc_html__( 'Scroll Parallax?', 'porto-functionality' ),
					'type'        => Controls_Manager::SWITCHER,
					'description' => sprintf( esc_html__( 'Section\'s width changes when scrolling page. For more information, read this %1$sarticle%2$s.', 'porto-functionality' ), '<a href="https://www.portotheme.com/wordpress/porto/documentation/how-to-add-scroll-paralax-effect/" target="_blank">', '</a>' ),
				)
			);

			$self->add_control(
				'scroll_parallax_width',
				array(
					'label'     => esc_html__( 'Start Width (%)', 'porto-functionality' ),
					'type'      => Controls_Manager::SLIDER,
					'default'   => array(
						'unit' => '',
						'size' => 40,
					),
					'range'     => array(
						'' => array(
							'step' => 1,
							'min'  => 20,
							'max'  => 90,
						),
					),
					'condition' => array(
						'scroll_parallax' => 'yes',
					),
				)
			);

			$self->end_controls_section();

			$self->start_controls_section(
				'_porto_section_particles_effect',
				array(
					'label' => __( 'Particles Effect', 'porto-functionality' ),
					'tab'   => Porto_Elementor_Editor_Custom_Tabs::TAB_CUSTOM,
				)
			);

			$self->add_control(
				'particles_img',
				array(
					'type'        => Controls_Manager::MEDIA,
					'label'       => __( 'Particles Image', 'porto-functionality' ),
					'description' => sprintf( esc_html__( 'For more information, read this %1$sarticle%2$s.', 'porto-functionality' ), '<a href="https://www.portotheme.com/wordpress/porto/documentation/how-to-add-particles-effect/" target="_blank">', '</a>' ),
					'dynamic'     => array(
						'active' => true,
					),
				)
			);

			$self->add_control(
				'particles_hover_effect',
				array(
					'label'     => __( 'Hover Effect', 'porto-functionality' ),
					'type'      => Controls_Manager::SELECT,
					'options'   => array(
						''        => __( 'None', 'porto-functionality' ),
						'grab'    => __( 'Grab', 'porto-functionality' ),
						'bubble'  => __( 'Bubble', 'porto-functionality' ),
						'repulse' => __( 'Repulse', 'porto-functionality' ),
					),
					'default'   => '',
					'condition' => array(
						'particles_img[url]!' => '',
					),
				)
			);

			$self->add_control(
				'particles_click_effect',
				array(
					'label'     => __( 'Click Effect', 'porto-functionality' ),
					'type'      => Controls_Manager::SELECT,
					'options'   => array(
						''        => __( 'None', 'porto-functionality' ),
						'bubble'  => __( 'Bubble', 'porto-functionality' ),
						'repulse' => __( 'Repulse', 'porto-functionality' ),
						'push'    => __( 'Push', 'porto-functionality' ),
						'remove'  => __( 'Remove', 'porto-functionality' ),
					),
					'default'   => '',
					'condition' => array(
						'particles_img[url]!' => '',
					),
				)
			);

			$self->end_controls_section();

			$self->start_controls_section(
				'_porto_section_inviewport_effect',
				array(
					'label' => __( 'Scroll In Viewport', 'porto-functionality' ),
					'tab'   => Porto_Elementor_Editor_Custom_Tabs::TAB_CUSTOM,
				)
			);

			$self->add_control(
				'description_inviewport',
				array(
					'type'            => Controls_Manager::RAW_HTML,
					'raw'             => sprintf( esc_html__( 'Please don\'t use the background option in Style Tab.', 'porto-functionality' ), '<b>', '</b>' ),
					'content_classes' => 'elementor-panel-alert elementor-panel-alert-info',
					'condition'       => array(
						'scroll_bg_scale' => '',
					),
				)
			);

			$self->add_control(
				'scroll_inviewport',
				array(
					'label'       => esc_html__( 'Scroll Effect In Viewport?', 'porto-functionality' ),
					'type'        => Controls_Manager::SWITCHER,
					'description' => sprintf( esc_html__( 'Section\'s background color changes when scrolling page. For more information, read this %1$sarticle%2$s.', 'porto-functionality' ), '<a href="https://www.portotheme.com/wordpress/porto/documentation/how-to-use-scroll-in-viewport/" target="_blank">', '</a>' ),
				)
			);

			$self->add_control(
				'scroll_bg_scale',
				array(
					'label'       => esc_html__( 'Scale Background?', 'porto-functionality' ),
					'type'        => Controls_Manager::SWITCHER,
					'description' => esc_html__( 'Scale the background color when scrolling page.', 'porto-functionality' ),
					'condition'   => array(
						'scroll_inviewport' => 'yes',
					),
				)
			);

			$self->add_control(
				'scroll_bg',
				array(
					'type'        => Controls_Manager::COLOR,
					'label'       => __( 'Inside Background Color', 'porto-functionality' ),
					'description' => __( 'Actual Background Color in the viewport', 'porto-functionality' ),
					'condition'   => array(
						'scroll_inviewport' => 'yes',
						'scroll_bg_scale'   => '',
					),
				)
			);

			$self->add_control(
				'scroll_bg_inout',
				array(
					'type'        => Controls_Manager::COLOR,
					'label'       => __( 'Outside Background Color', 'porto-functionality' ),
					'description' => __( 'Background Color for entering or exit', 'porto-functionality' ),
					'condition'   => array(
						'scroll_inviewport' => 'yes',
						'scroll_bg_scale'   => '',
					),
				)
			);

			$self->add_control(
				'scroll_top_mode',
				array(
					'type'      => Controls_Manager::NUMBER,
					'min'       => 1,
					'max'       => 500,
					'label'     => __( 'Top Offset(px)', 'porto-functionality' ),
					'condition' => array(
						'scroll_inviewport' => 'yes',
						'scroll_bg_scale'   => '',
					),
				)
			);

			$self->add_control(
				'scroll_bottom_mode',
				array(
					'type'      => Controls_Manager::NUMBER,
					'min'       => 1,
					'max'       => 500,
					'label'     => __( 'Bottom Offset(px)', 'porto-functionality' ),
					'condition' => array(
						'scroll_inviewport' => 'yes',
						'scroll_bg_scale'   => '',
					),
				)
			);

			$self->add_control(
				'scale_bg',
				array(
					'type'      => Controls_Manager::COLOR,
					'label'     => __( 'Background Color', 'porto-functionality' ),
					'condition' => array(
						'scroll_inviewport' => 'yes',
						'scroll_bg_scale'   => 'yes',
					),
				)
			);

			$self->add_control(
				'set_round',
				array(
					'label'       => esc_html__( 'Rounded Background?', 'porto-functionality' ),
					'type'        => Controls_Manager::SWITCHER,
					'description' => esc_html__( 'To make the shape in a circle when scrolling page.', 'porto-functionality' ),
					'condition'   => array(
						'scroll_inviewport' => 'yes',
						'scroll_bg_scale'   => 'yes',
					),
				)
			);

			$self->add_control(
				'scale_extra_class',
				array(
					'type'      => Controls_Manager::TEXT,
					'label'     => __( 'Extra Class', 'porto-functionality' ),
					'condition' => array(
						'scroll_inviewport' => 'yes',
						'scroll_bg_scale'   => 'yes',
					),
				)
			);

			$self->end_controls_section();
		}

		if ( ( class_exists( 'Porto_Elementor_Column' ) && $self instanceof Porto_Elementor_Column ) || ( class_exists( 'Porto_Elementor_Container' ) && $self instanceof Porto_Elementor_Container ) ) {
			$condition = array();
			if ( $self instanceof Porto_Elementor_Container ) {
				$condition = array(
					'condition' => array(
						'container_type' => 'flex',
					),
				);
			}
			$self->start_controls_section(
				'_porto_content_collapse',
				array_merge(
					array(
						'label' => __( 'Content Collapse', 'porto-functionality' ),
						'tab'   => Porto_Elementor_Editor_Custom_Tabs::TAB_CUSTOM,
					),
					$condition,
				)
			);

			$self->add_control(
				'content_collapse',
				array(
					'label'       => esc_html__( 'Content Collapsible', 'porto-functionality' ),
					'type'        => Controls_Manager::SWITCHER,
					'description' => sprintf( __( '%1$sNotice%2$s: You need to add "Porto Button" to the end of Column( Container ). Use button as %1$s"Content collapse action"%2$s.', 'porto-functionality' ), '<b>', '</b>' ) ,
				)
			);

			$self->add_responsive_control(
				'content_collapse_height',
				array(
					'label'       => esc_html__( 'Collapse Content Height (px)', 'porto-functionality' ),
					'type'        => Controls_Manager::SLIDER,
					'range'       => array(
						'px' => array(
							'min'  => 200,
							'max'  => 1000,
							'step' => 1,
						),
					),
					'selectors'   => array(
						'{{WRAPPER}}.e-con.e-con-full,
						{{WRAPPER}}.e-con > .e-con-inner,
						{{WRAPPER}} > .elementor-column-wrap > .elementor-widget-wrap,
						{{WRAPPER}} > .elementor-widget-wrap,
						{{WRAPPER}}.elementor-widget-wrap,
						{{WRAPPER}}.elementor-column-wrap > .elementor-widget-wrap' => 'max-height: {{SIZE}}px',
					),
					'default'     => array(
						'size' => 200,
					),
					'condition'   => array(
						'content_collapse' => 'yes',
					),
				)
			);
	
			$self->add_control(
				'content_collapse_color',
				array(
					'label'     => esc_html__( 'Overlay Color', 'porto-functionality' ),
					'type'      => Controls_Manager::COLOR,
					'selectors' => array(
						'{{WRAPPER}}.e-con.e-con-full:not(.opened):after,
						{{WRAPPER}}.e-con:not(.opened) > .e-con-inner:after,
						{{WRAPPER}}.elementor-column:not(.opened)>.elementor-column-wrap>.elementor-widget-wrap:after,
						{{WRAPPER}}.elementor-column:not(.opened)>.elementor-widget-wrap:after,
						{{WRAPPER}}.elementor-column-wrap:not(.opened)>.elementor-widget-wrap:after,
						{{WRAPPER}}.elementor-widget-wrap:not(.opened):after' => 'color: {{VALUE}};',
					),
					'condition' => array(
						'content_collapse' => 'yes',
					),
				)
			);

			$self->end_controls_section();
		}
	}
endif;

/**
 * Add Reveal animation to Elementor
 * 
 * @since 6.12.0
 */
if ( ! function_exists( 'porto_elementor_animation_controls' ) ):
	function porto_elementor_animation_controls( $self, $args, $prefix = '' ) {
		$self->add_control (
			'animation_reveal_clr',
			array(
				'type'      => Controls_Manager::COLOR,
				'label'     => __( 'Reveal Color', 'porto-functionality' ),
				'condition' => array(
					$prefix . 'animation' => array( 'revealDirTop', 'revealDirDown', 'revealDirLeft', 'revealDirRight' ),
				),
				'selectors' => array(
					'.elementor-element-{{ID}}[class*="revealDir"]:after' => 'background-color: {{VALUE}};',
				),
			),
			array(
				'position' => array(
					'at' => 'after',
					'of' => $prefix . 'animation_delay',
				),
			)
		);
	}
endif;