HEX
Server: Apache
System: Linux WWW 6.1.0-40-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.153-1 (2025-09-20) x86_64
User: root (0)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/ippmt.kauko.lt/wp-content/plugins/ocean-elementor-widgets/modules/modal/widgets/modal.php
<?php
namespace owpElementor\Modules\Modal\Widgets;

// Elementor Classes
use Elementor\Controls_Manager;
use Elementor\Group_Control_Typography;
use Elementor\Scheme_Typography;
use Elementor\Group_Control_Background;
use Elementor\Group_Control_Border;
use Elementor\Group_Control_Box_Shadow;
use Elementor\Widget_Base;
use Elementor\Plugin;

class Modal extends Widget_Base {

	public function get_name() {
		return 'oew-modal';
	}

	public function get_title() {
		return __( 'Modal', 'ocean-elementor-widgets' );
	}

	public function get_icon() {
		// Upload "eicons.ttf" font via this site: http://bluejamesbond.github.io/CharacterMap/
		return 'oew-icon eicon-button';
	}

	public function get_categories() {
		return [ 'oceanwp-elements' ];
	}

	public function get_script_depends() {
		return [ 'oew-modal' ];
	}

	public function get_style_depends() {
		return [ 'oew-modal' ];
	}

	protected function _register_controls() {

		$this->start_controls_section(
			'section_modal_button',
			[
				'label' 		=> __( 'Button', 'ocean-elementor-widgets' ),
				'condition' 	=> [
					'layout' => 'default',
				],
			]
		);

		$this->add_control(
			'text',
			[
				'label' 		=> __( 'Text', 'ocean-elementor-widgets' ),
				'type' 			=> Controls_Manager::TEXT,
				'default' 		=> __( 'Open Modal', 'ocean-elementor-widgets' ),
				'condition' 	=> [
					'layout' => 'default',
				],
				'dynamic' 		=> [ 'active' => true ],
			]
		);

		$this->add_responsive_control(
			'align',
			[
				'label' 		=> __( 'Alignment', 'ocean-elementor-widgets' ),
				'type' 			=> Controls_Manager::CHOOSE,
				'options' 		=> [
					'left'    => [
						'title' => __( 'Left', 'ocean-elementor-widgets' ),
						'icon' 	=> 'fa fa-align-left',
					],
					'center' => [
						'title' => __( 'Center', 'ocean-elementor-widgets' ),
						'icon' 	=> 'fa fa-align-center',
					],
					'right' => [
						'title' => __( 'Right', 'ocean-elementor-widgets' ),
						'icon' 	=> 'fa fa-align-right',
					],
					'justify' => [
						'title' => __( 'Justified', 'ocean-elementor-widgets' ),
						'icon' 	=> 'fa fa-align-justify',
					],
				],
				'default' 		=> '',
				'prefix_class' => 'oew%s-align-',
				'condition' 	=> [
					'layout' => 'default',
				],
			]
		);

		$this->add_control(
			'icon',
			[
				'label' 		=> __( 'Icon', 'ocean-elementor-widgets' ),
				'type' 			=> Controls_Manager::ICON,
				'label_block' 	=> true,
				'condition' 	=> [
					'layout' => 'default',
				],
			]
		);

		$this->add_control(
			'icon_align',
			[
				'label' 		=> __( 'Icon Position', 'ocean-elementor-widgets' ),
				'type' 			=> Controls_Manager::SELECT,
				'default' 		=> 'left',
				'options' 		=> [
					'left' => __( 'Before', 'ocean-elementor-widgets' ),
					'right' => __( 'After', 'ocean-elementor-widgets' ),
				],
				'condition' 	=> [
					'icon!' => '',
					'layout' => 'default',
				],
			]
		);

		$this->add_control(
			'icon_indent',
			[
				'label' 		=> __( 'Icon Spacing', 'ocean-elementor-widgets' ),
				'type' 			=> Controls_Manager::SLIDER,
				'default' 		=> [
					'size' => 4,
				],
				'range' 		=> [
					'px' => [
						'max' => 50,
					],
				],
				'condition' 	=> [
					'icon!' => '',
					'layout' => 'default',
				],
				'selectors' 	=> [
					'{{WRAPPER}} .oew-modal-button .elementor-align-icon-right' => 'margin-left: {{SIZE}}{{UNIT}};',
					'{{WRAPPER}} .oew-modal-button .elementor-align-icon-left' => 'margin-right: {{SIZE}}{{UNIT}};',
				],
			]
		);

        $this->end_controls_section();

		$this->start_controls_section(
			'section_modal',
			[
				'label' 		=> __( 'Modal', 'ocean-elementor-widgets' ),
			]
		);

		$this->add_control(
			'layout',
			[
				'label'   		=> __( 'Layout', 'ocean-elementor-widgets' ),
				'type'    		=> Controls_Manager::SELECT,
				'default' 		=> 'default',
				'options' 		=> [
					'default'  	=> __( 'Default', 'ocean-elementor-widgets' ),
					'timer'  	=> __( 'Timer Popup', 'ocean-elementor-widgets' ),
					'exit'  	=> __( 'Exit-Intent', 'ocean-elementor-widgets' ),
				],
			]
		);

		$this->add_control(
			'cookie',
			[
				'label' 		=> __( 'Add Cookie', 'ocean-elementor-widgets' ),
				'description' 	=> __( 'Add a cookie to display the modal only once.', 'ocean-elementor-widgets' ),
				'type' 			=> Controls_Manager::SWITCHER,
				'condition' 	=> [
					'layout' => [ 'timer', 'exit' ]
				],
			]
		);

		$this->add_control(
			'style',
			[
				'label'   		=> __( 'Style', 'ocean-elementor-widgets' ),
				'type'    		=> Controls_Manager::SELECT,
				'default' 		=> 'default',
				'options' 		=> [
					'default'  	=> __( 'Default', 'ocean-elementor-widgets' ),
					'full'  	=> __( 'Full Screen', 'ocean-elementor-widgets' ),
				],
			]
		);

		$this->add_control(
			'display_after',
			[
				'label' 		=> __( 'Display After (s)', 'ocean-elementor-widgets' ),
				'type' 			=> Controls_Manager::SLIDER,
				'default' 		=> [
					'size' => 10,
				],
				'range' 		=> [
					'px' => [
						'min' => 1,
						'max' => 60,
					],
				],
				'condition' 	=> [
					'layout' => 'timer',
				],
			]
		);

		$this->add_control(
			'source',
			[
				'label'   		=> __( 'Source', 'ocean-elementor-widgets' ),
				'type'    		=> Controls_Manager::SELECT,
				'default' 		=> 'content',
				'options' 		=> [
					'content'  	=> __( 'Content', 'ocean-elementor-widgets' ),
					'template'  => __( 'Template', 'ocean-elementor-widgets' ),
				],
			]
		);

		$this->add_control(
			'content',
			[
				'label'       	=> '',
				'type'        	=> Controls_Manager::WYSIWYG,
				'default' 		=> __( 'I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.', 'ocean-elementor-widgets' ),
				'condition' 	=> [
					'source' => 'content',
				],
				'dynamic' 		=> [ 'active' => true ],
			]
		);

		$this->add_control(
			'templates',
			[
				'label'   		=> __( 'Choose Template', 'ocean-elementor-widgets' ),
				'type'    		=> Controls_Manager::SELECT,
				'default' 		=> '0',
				'options' 		=> oew_get_available_templates(),
				'condition' 	=> [
					'source' => 'template',
				],
			]
		);

		$this->add_responsive_control(
			'content_align',
			[
				'label' 		=> __( 'Alignment', 'ocean-elementor-widgets' ),
				'type' 			=> Controls_Manager::CHOOSE,
				'options' 		=> [
					'left'    => [
						'title' => __( 'Left', 'ocean-elementor-widgets' ),
						'icon' 	=> 'fa fa-align-left',
					],
					'center' => [
						'title' => __( 'Center', 'ocean-elementor-widgets' ),
						'icon' 	=> 'fa fa-align-center',
					],
					'right' => [
						'title' => __( 'Right', 'ocean-elementor-widgets' ),
						'icon' 	=> 'fa fa-align-right',
					],
				],
				'default' 		=> '',
				'condition' 	=> [
					'source' => 'content',
				],
				'selectors' 	=> [
					'#oew-modal-{{ID}}.oew-modal-wrap .oew-modal-inner' => 'text-align: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->add_responsive_control(
			'modal_width',
			[
				'label' 		=> __( 'Width', 'ocean-elementor-widgets' ),
				'type' 			=> Controls_Manager::SLIDER,
				'size_units' 	=> [ 'px', '%' ],
				'range' => [
					'px' => [
						'min' => 200,
						'max' => 1200,
					],
					'%' => [
						'min' => 10,
						'max' => 100,
					]
				],
				'selectors' 	=> [
					'#oew-modal-{{ID}}.oew-modal-wrap .oew-modal-inner' => 'width: {{SIZE}}{{UNIT}};',
				],
			]
		);

		$this->add_control(
			'modal_close_button',
			[
				'label'   		=> __( 'Close Button', 'ocean-elementor-widgets' ),
				'type'    		=> Controls_Manager::SELECT,
				'default' 		=> 'inside',
				'options' 		=> [
					'inside'  	=> __( 'Inside', 'ocean-elementor-widgets' ),
					'outside'  	=> __( 'Outside', 'ocean-elementor-widgets' ),
					'none'  	=> __( 'None', 'ocean-elementor-widgets' ),
				],
			]
		);

        $this->end_controls_section();

		$this->start_controls_section(
			'section_button_style',
			[
				'label' 		=> __( 'Button', 'ocean-elementor-widgets' ),
				'tab' 			=> Controls_Manager::TAB_STYLE,
				'condition' 	=> [
					'layout' => 'default',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' 			=> 'modal_button_typography',
				'scheme' 		=> Scheme_Typography::TYPOGRAPHY_4,
				'selector' 		=> '{{WRAPPER}} .oew-modal-button a',
				'condition' 	=> [
					'layout' => 'default',
				],
			]
		);

		$this->start_controls_tabs( 'tabs_modal_button_style' );

		$this->start_controls_tab(
			'tab_modal_button_normal',
			[
				'label' 		=> __( 'Normal', 'ocean-elementor-widgets' ),
				'condition' 	=> [
					'layout' => 'default',
				],
			]
		);

		$this->add_control(
			'modal_button_background_color',
			[
				'label' 		=> __( 'Background Color', 'ocean-elementor-widgets' ),
				'type' 			=> Controls_Manager::COLOR,
				'selectors' 	=> [
					'{{WRAPPER}} .oew-modal-button a' => 'background-color: {{VALUE}};',
				],
				'condition' 	=> [
					'layout' => 'default',
				],
			]
		);

		$this->add_control(
			'modal_button_text_color',
			[
				'label' 		=> __( 'Text Color', 'ocean-elementor-widgets' ),
				'type' 			=> Controls_Manager::COLOR,
				'selectors' 	=> [
					'{{WRAPPER}} .oew-modal-button a' => 'color: {{VALUE}};',
				],
				'condition' 	=> [
					'layout' => 'default',
				],
			]
		);

		$this->end_controls_tab();

		$this->start_controls_tab(
			'tab_modal_button_hover',
			[
				'label' 		=> __( 'Hover', 'ocean-elementor-widgets' ),
				'condition' 	=> [
					'layout' => 'default',
				],
			]
		);

		$this->add_control(
			'modal_button_hover_background_color',
			[
				'label' 		=> __( 'Background Color', 'ocean-elementor-widgets' ),
				'type' 			=> Controls_Manager::COLOR,
				'selectors' 	=> [
					'{{WRAPPER}} .oew-modal-button a:hover' => 'background-color: {{VALUE}};',
				],
				'condition' 	=> [
					'layout' => 'default',
				],
			]
		);

		$this->add_control(
			'modal_button_hover_color',
			[
				'label' 		=> __( 'Text Color', 'ocean-elementor-widgets' ),
				'type' 			=> Controls_Manager::COLOR,
				'selectors' 	=> [
					'{{WRAPPER}} .oew-modal-button a:hover' => 'color: {{VALUE}};',
				],
				'condition' 	=> [
					'layout' => 'default',
				],
			]
		);

		$this->add_control(
			'modal_button_hover_border_color',
			[
				'label' 		=> __( 'Border Color', 'ocean-elementor-widgets' ),
				'type' 			=> Controls_Manager::COLOR,
				'selectors' 	=> [
					'{{WRAPPER}} .oew-modal-button a:hover' => 'border-color: {{VALUE}};',
				],
				'condition' 	=> [
					'layout' => 'default',
				],
			]
		);

		$this->end_controls_tab();

		$this->end_controls_tabs();

		$this->add_group_control(
			Group_Control_Border::get_type(),
			[
				'name' 			=> 'modal_button_border',
				'placeholder' 	=> '1px',
				'default' 		=> '1px',
				'selector' 		=> '{{WRAPPER}} .oew-modal-button a',
				'separator' 	=> 'before',
				'condition' 	=> [
					'layout' => 'default',
				],
			]
		);

		$this->add_control(
			'modal_button_border_radius',
			[
				'label' 		=> __( 'Border Radius', 'ocean-elementor-widgets' ),
				'type' 			=> Controls_Manager::DIMENSIONS,
				'size_units' 	=> [ 'px', '%' ],
				'selectors' 	=> [
					'{{WRAPPER}} .oew-modal-button a' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
				'condition' 	=> [
					'layout' => 'default',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Box_Shadow::get_type(),
			[
				'name' 			=> 'modal_button_box_shadow',
				'selector' 		=> '{{WRAPPER}} .oew-modal-button a',
				'condition' 	=> [
					'layout' => 'default',
				],
			]
		);

		$this->add_responsive_control(
			'modal_button_padding',
			[
				'label' 		=> __( 'Padding', 'ocean-elementor-widgets' ),
				'type' 			=> Controls_Manager::DIMENSIONS,
				'size_units' 	=> [ 'px', 'em', '%' ],
				'selectors' 	=> [
					'{{WRAPPER}} .oew-modal-button a' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
				'separator' 	=> 'before',
				'condition' 	=> [
					'layout' => 'default',
				],
			]
		);

		$this->add_responsive_control(
			'modal_button_margin',
			[
				'label' 		=> __( 'Margin', 'ocean-elementor-widgets' ),
				'type' 			=> Controls_Manager::DIMENSIONS,
				'size_units' 	=> [ 'px', 'em', '%' ],
				'selectors' 	=> [
					'{{WRAPPER}} .oew-modal-button a' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
				'condition' 	=> [
					'layout' => 'default',
				],
			]
		);

        $this->end_controls_section();

		$this->start_controls_section(
			'section_modal_style',
			[
				'label' 		=> __( 'Modal', 'ocean-elementor-widgets' ),
				'tab' 			=> Controls_Manager::TAB_STYLE,
			]
		);

		$this->add_group_control(
			Group_Control_Typography::get_type(),
			[
				'name' 			=> 'modal_typography',
				'scheme' 		=> Scheme_Typography::TYPOGRAPHY_4,
				'selector' 		=> '#oew-modal-{{ID}}.oew-modal-wrap .oew-modal-inner',
			]
		);

		$this->add_group_control(
			Group_Control_Background::get_type(),
			[
				'name'     		=> 'modal_background_color',
				'selector' 		=> '#oew-modal-{{ID}}.oew-modal-wrap .oew-modal-inner',
			]
		);

		$this->add_control(
			'modal_text_color',
			[
				'label' 		=> __( 'Text Color', 'ocean-elementor-widgets' ),
				'type' 			=> Controls_Manager::COLOR,
				'selectors' 	=> [
					'#oew-modal-{{ID}}.oew-modal-wrap .oew-modal-inner' => 'color: {{VALUE}};',
				],
			]
		);

		$this->add_control(
			'modal_link_color',
			[
				'label' 		=> __( 'Link Color', 'ocean-elementor-widgets' ),
				'type' 			=> Controls_Manager::COLOR,
				'selectors' 	=> [
					'#oew-modal-{{ID}}.oew-modal-wrap .oew-modal-inner a' => 'color: {{VALUE}};',
				],
			]
		);

		$this->add_control(
			'modal_link_hover_color',
			[
				'label' 		=> __( 'Link Hover Color', 'ocean-elementor-widgets' ),
				'type' 			=> Controls_Manager::COLOR,
				'selectors' 	=> [
					'#oew-modal-{{ID}}.oew-modal-wrap .oew-modal-inner a:hover' => 'color: {{VALUE}};',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Border::get_type(),
			[
				'name' 			=> 'modal_border',
				'placeholder' 	=> '1px',
				'default' 		=> '1px',
				'selector' 		=> '#oew-modal-{{ID}}.oew-modal-wrap .oew-modal-inner',
				'separator' 	=> 'before',
			]
		);

		$this->add_control(
			'modal_border_radius',
			[
				'label' 		=> __( 'Border Radius', 'ocean-elementor-widgets' ),
				'type' 			=> Controls_Manager::DIMENSIONS,
				'size_units' 	=> [ 'px', '%' ],
				'selectors' 	=> [
					'#oew-modal-{{ID}}.oew-modal-wrap .oew-modal-inner' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
			]
		);

		$this->add_group_control(
			Group_Control_Box_Shadow::get_type(),
			[
				'name' 			=> 'modal_box_shadow',
				'selector' 		=> '#oew-modal-{{ID}}.oew-modal-wrap .oew-modal-inner',
			]
		);

		$this->add_responsive_control(
			'modal_padding',
			[
				'label' 		=> __( 'Padding', 'ocean-elementor-widgets' ),
				'type' 			=> Controls_Manager::DIMENSIONS,
				'size_units' 	=> [ 'px', 'em', '%' ],
				'selectors' 	=> [
					'#oew-modal-{{ID}}.oew-modal-wrap .oew-modal-inner' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
				],
				'separator' 	=> 'before',
			]
		);

		$this->add_control(
			'modal_close_btn_heading',
			[
				'label' 		=> __( 'Close Button', 'ocean-elementor-widgets' ),
				'type' 			=> Controls_Manager::HEADING,
				'separator' 	=> 'before',
				'condition' 	=> [
					'modal_close_button!' => 'none',
				],
			]
		);

		$this->add_control(
			'modal_close_btn_color',
			[
				'label'     	=> esc_html__( 'Color', 'ocean-elementor-widgets' ),
				'type'      	=> Controls_Manager::COLOR,
				'condition' 	=> [
					'modal_close_button!' => 'none',
				],
				'selectors' 	=> [
					'#oew-modal-{{ID}}.oew-modal-wrap .oew-modal-close svg' => 'fill: {{VALUE}};',
				],
			]
		);

		$this->add_control(
			'modal_close_btn_hover_color',
			[
				'label'     	=> esc_html__( 'Hover Color', 'ocean-elementor-widgets' ),
				'type'      	=> Controls_Manager::COLOR,
				'condition' 	=> [
					'modal_close_button!' => 'none',
				],
				'selectors' 	=> [
					'#oew-modal-{{ID}}.oew-modal-wrap .oew-modal-close:hover svg' => 'fill: {{VALUE}};',
				],
			]
		);

		$this->add_control(
			'modal_overlay_heading',
			[
				'label' 		=> __( 'Overlay', 'ocean-elementor-widgets' ),
				'type' 			=> Controls_Manager::HEADING,
				'separator' 	=> 'before',
			]
		);

		$this->add_control(
			'modal_overlay_background_color',
			[
				'label'     	=> esc_html__( 'Color', 'ocean-elementor-widgets' ),
				'type'      	=> Controls_Manager::COLOR,
				'selectors' 	=> [
					'#oew-modal-{{ID}}.oew-modal-wrap .oew-modal-overlay' => 'background-color: {{VALUE}};',
				],
			]
		);

        $this->end_controls_section();

	}

	protected function render() {
		$settings 	= $this->get_settings_for_display();
		$id 		= $this->get_id();
		$style 		= $settings['style'];
		$source 	= $settings['source'];
		$close 		= $settings['modal_close_button'];

		$this->add_render_attribute( 'button-wrap', 'class', 'oew-modal-button' );
		$this->add_render_attribute( 'button', 'href', '#oew-modal-' . esc_attr( $id ) );
		$this->add_render_attribute( 'button', 'class', 'button' );
		
		$this->add_render_attribute( 'icon-align', 'class', [
			'oew-button-icon',
			'elementor-align-icon-' . $settings['icon_align'],
		] );

		$this->add_render_attribute( 'modal', 'id', 'oew-modal-' . esc_attr( $id ) );
		$this->add_render_attribute( 'modal', 'class', 'oew-modal-wrap' );

		if ( 'full' == $style ) {
			$this->add_render_attribute( 'modal', 'class', 'oew-modal-full' );
		}

		if ( 'template' == $source ) {
			$this->add_render_attribute( 'modal', 'class', 'has-template' );
		}

		$this->add_render_attribute( 'modal-container', 'class', 'oew-modal-container' );
		$this->add_render_attribute( 'modal-inner', 'class', 'oew-modal-inner' );

		$this->add_render_attribute( 'modal-overlay', 'class', 'oew-modal-overlay' );

		if ( 'default' == $settings['layout'] ) { ?>

			<div <?php echo $this->get_render_attribute_string( 'button-wrap' ); ?>>
				<a <?php echo $this->get_render_attribute_string( 'button' ); ?>>
					<?php
					if ( ! empty( $settings['icon'] ) && 'left' == $settings['icon_align'] ) { ?>
						<span <?php echo $this->get_render_attribute_string( 'icon-align' ); ?>>
							<i class="<?php echo esc_attr( $settings['icon'] ); ?>" aria-hidden="true"></i>
						</span>
					<?php
					} ?>

					<span><?php echo esc_attr( $settings['text'] ); ?></span>

					<?php
					if ( ! empty( $settings['icon'] ) && 'right' == $settings['icon_align'] ) { ?>
						<span <?php echo $this->get_render_attribute_string( 'icon-align' ); ?>>
							<i class="<?php echo esc_attr( $settings['icon'] ); ?>" aria-hidden="true"></i>
						</span>
					<?php
					} ?>
				</a>
			</div>

		<?php } ?>
		
	    <div <?php echo $this->get_render_attribute_string( 'modal' ); ?>>
			<?php
			if ( 'outside' == $close ) {
				$this->close_btn();
			} ?>
			<div <?php echo $this->get_render_attribute_string( 'modal-container' ); ?>>
				<div <?php echo $this->get_render_attribute_string( 'modal-inner' ); ?>>
					<?php
					if ( 'inside' == $close ) {
						$this->close_btn();
					} ?>
		        	
					<?php
					if ( ! empty( $source ) ) {
		            	if ( 'content' == $source
		            		&& ! empty( $settings['content'] ) ) {
							echo do_shortcode( $settings['content'] );
		            	} else if ( 'template' == $source
		            		&& ( '0' != $settings['templates'] && ! empty( $settings['templates'] ) ) ) {
		            		echo Plugin::instance()->frontend->get_builder_content_for_display( $settings['templates'] );
		            	}
		            } ?>
				</div>
			</div>
			<div <?php echo $this->get_render_attribute_string( 'modal-overlay' ); ?>></div>
		</div>

	    <?php
	    if ( ! \Elementor\Plugin::instance()->editor->is_edit_mode()
	    	&& 'default' != $settings['layout'] ) { ?>
			<?php $this->scripts(); ?>
		<?php
		} ?>

	<?php
	}

	protected function close_btn() {
		$settings = $this->get_settings();

		$this->add_render_attribute( 'modal-close', 'type', 'button' );
		$this->add_render_attribute( 'modal-close', 'class', [
			'oew-modal-close',
			'oew-modal-close-' . $settings['modal_close_button'],
		] ); ?>

		<button <?php echo $this->get_render_attribute_string( 'modal-close' ); ?>>
			<svg width="14" height="14" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512" xml:space="preserve">
				<path d="M505.943,6.058c-8.077-8.077-21.172-8.077-29.249,0L6.058,476.693c-8.077,8.077-8.077,21.172,0,29.249
					C10.096,509.982,15.39,512,20.683,512c5.293,0,10.586-2.019,14.625-6.059L505.943,35.306
					C514.019,27.23,514.019,14.135,505.943,6.058z"/>
				<path d="M505.942,476.694L35.306,6.059c-8.076-8.077-21.172-8.077-29.248,0c-8.077,8.076-8.077,21.171,0,29.248l470.636,470.636
					c4.038,4.039,9.332,6.058,14.625,6.058c5.293,0,10.587-2.019,14.624-6.057C514.018,497.866,514.018,484.771,505.942,476.694z"/>
			</svg>
		</button>

	<?php
	}

	protected function scripts() {
		$settings 	= $this->get_settings();
		$id       	= $this->get_id();
		$layout 	= $settings['layout'];
		$timer 		= ( $settings['display_after'] ) ? ( $settings['display_after']['size'] * 1000 ) : 1000;
		$cookie 	= $settings['cookie'];
		$time 		= 2592000;
		$path 		= ( defined( 'COOKIEPATH' ) ? COOKIEPATH : '' );
		$domain 	= ( defined( 'COOKIE_DOMAIN' ) ? COOKIE_DOMAIN : '' );
		$secure 	= (int) is_ssl();

		if ( '1' == $secure ) {
			$secure = 'secure;';
		} ?>

		<script type="text/javascript">
			( function( $ ) {

				<?php if ( 'timer' == $layout && 'yes' != $cookie ) { ?>
				    $( document ).on( 'ready', function() {
				        setTimeout( function() {
				        	var innerWidth = $( 'html' ).innerWidth();
				            $( 'html' ).css( 'overflow', 'hidden' );
				            var hiddenInnerWidth = $( 'html' ).innerWidth();
				            $( 'html' ).css( 'margin-right', hiddenInnerWidth - innerWidth );

				            // Open the modal
				            $( '#oew-modal-<?php echo esc_attr( $id ); ?>' ).fadeIn( 500 );      
						}, <?php echo esc_attr( $timer ); ?> );
				    } );
				<?php } ?>

				<?php if ( 'exit' == $layout && 'yes' != $cookie ) { ?>
				    $( document ).on( 'mouseleave', function( e ) {
				        if ( e.clientY <= 0 || e.clientX <= 0
				        	|| ( e.clientX >= window.innerWidth || e.clientY >= window.innerHeight ) ) {
				        	var innerWidth = $( 'html' ).innerWidth();
				            $( 'html' ).css( 'overflow', 'hidden' );
				            var hiddenInnerWidth = $( 'html' ).innerWidth();
				            $( 'html' ).css( 'margin-right', hiddenInnerWidth - innerWidth );

				            // Open the modal
				            $( '#oew-modal-<?php echo esc_attr( $id ); ?>' ).fadeIn( 500 );      
						}
				    } );
				<?php } ?>

				<?php if ( 'yes' == $cookie ) { ?>
					$( document ).ready( function () {
						var modal 		= $( '#oew-modal-<?php echo esc_attr( $id ); ?>' ),
							cookie 		= $.fn.oewGetCookieModal();

						// handle set-cookie button click
						$( document ).on( 'click', '#oew-modal-<?php echo esc_attr( $id ); ?> .oew-modal-close, #oew-modal-<?php echo esc_attr( $id ); ?> .oew-modal-overlay', function( e ) {
							e.preventDefault();

							var date 		= new Date(),
								later_date 	= new Date(),
								modal 		= $( '#oew-modal-<?php echo esc_attr( $id ); ?>' );

							// set expiry time in seconds
							later_date.setTime( parseInt( date.getTime() ) + parseInt( <?php echo esc_attr( $time ); ?> ) * 1000 );

							// set cookie
							document.cookie = 'oew_modal_closed_<?php echo esc_attr( $id ); ?>=true;expires=' + later_date.toUTCString() + ';<?php echo esc_attr( $secure ); ?>';

							// trigger custom event
							$.event.trigger( {
								type: 'oewSetCookieModal',
								value: 'true',
								time: date,
								expires: later_date
							} );

							// Hide modal
							$( 'html' ).css( {
				                'overflow': '',
				                'margin-right': '' 
				            } );

				            // Close the modal
				            modal.closest( '.oew-modal-wrap' ).fadeOut( 500 );

				            // Add class to the modal to not show it again
				            modal.addClass( 'oew-modal-closed' );
						} );

						// Cookie is not set
						if ( typeof cookie === 'undefined' ) {
							<?php if ( 'timer' == $layout ) { ?>
							    $( document ).on( 'ready', function() {
							        setTimeout( function() {
							        	var innerWidth = $( 'html' ).innerWidth();
							            $( 'html' ).css( 'overflow', 'hidden' );
							            var hiddenInnerWidth = $( 'html' ).innerWidth();
							            $( 'html' ).css( 'margin-right', hiddenInnerWidth - innerWidth );

							            // Open the modal
							            modal.fadeIn( 500 );      
									}, <?php echo esc_attr( $timer ); ?> );
							    } );
							<?php } ?>
							
						    <?php if ( 'exit' == $layout ) { ?>
							    $( document ).on( 'mouseleave', function( e ) {
							        if ( e.clientY <= 0 || e.clientX <= 0
							        	|| ( e.clientX >= window.innerWidth || e.clientY >= window.innerHeight ) ) {

							        	if ( ! modal.hasClass( 'oew-modal-closed' ) ) {
								        	var innerWidth = $( 'html' ).innerWidth();
								            $( 'html' ).css( 'overflow', 'hidden' );
								            var hiddenInnerWidth = $( 'html' ).innerWidth();
								            $( 'html' ).css( 'margin-right', hiddenInnerWidth - innerWidth );
								        }

							            // Open the modal
							            modal.fadeIn( 500 );
									}
							    } );
							<?php } ?>
						}

					} );

					// Get cookie value
					$.fn.oewGetCookieModal = function() {
						var value = "; " + document.cookie,
							parts = value.split( '; oew_modal_closed_<?php echo esc_attr( $id ); ?>=' );

						if ( parts.length === 2 )
							return parts.pop().split( ';' ).shift();
						else
							return;
					}
				<?php } ?>

			} )( jQuery );
		</script>

	<?php
	}

}