![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /proc/thread-self/cwd/wp-content/plugins/bdthemes-element-pack/modules/modal/widgets/ |
<?php namespace ElementPack\Modules\Modal\Widgets; use ElementPack\Base\Module_Base; use Elementor\Controls_Manager; use Elementor\Group_Control_Border; use Elementor\Group_Control_Typography; use Elementor\Group_Control_Box_Shadow; use Elementor\Icons_Manager; use ElementPack\Element_Pack_Loader; use ElementPack\Includes\Controls\SelectInput\Dynamic_Select; if (!defined('ABSPATH')) exit; // Exit if accessed directly class Modal extends Module_Base { public function get_name() { return 'bdt-modal'; } public function get_title() { return BDTEP . esc_html__('Modal', 'bdthemes-element-pack'); } public function get_icon() { return 'bdt-wi-modal'; } public function get_categories() { return ['element-pack']; } public function get_keywords() { return ['modal', 'lightbox', 'popup']; } public function get_script_depends() { if ($this->ep_is_edit_mode()) { return ['ep-scripts']; } else { return ['ep-modal']; } } public function get_custom_help_url() { return 'https://youtu.be/4qRa-eYDGZU'; } protected function register_controls() { $this->start_controls_section( 'section_modal_layout', [ 'label' => esc_html__('Layout', 'bdthemes-element-pack'), ] ); $this->add_control( 'layout', [ 'label' => esc_html__('Layout', 'bdthemes-element-pack'), 'type' => Controls_Manager::SELECT, 'default' => 'default', 'options' => [ 'default' => esc_html__('Default', 'bdthemes-element-pack'), 'splash' => esc_html__('Splash Screen', 'bdthemes-element-pack'), 'exit' => esc_html__('Exit Popup', 'bdthemes-element-pack'), 'on_scroll' => esc_html__('On Scroll', 'bdthemes-element-pack'), 'custom' => esc_html__('Custom Link', 'bdthemes-element-pack'), ], ] ); $this->add_control( 'modal_custom_id', [ 'label' => esc_html__('Modal Selector', 'bdthemes-element-pack'), 'description' => __('Set your modal selector here. For example: <b>.custom-selector</b> or <b>#custom-selector</b>. Set this selector where you want to link this modal. It\'s must be ID or Class.', 'bdthemes-element-pack'), 'type' => Controls_Manager::TEXT, 'default' => '#bdt-custom-modal', 'condition' => [ 'layout' => 'custom', ], ] ); $this->add_control( 'splash_after', [ 'label' => esc_html__('Splash After (sec)', 'bdthemes-element-pack'), 'type' => Controls_Manager::SLIDER, 'default' => [ 'size' => 5, ], 'range' => [ 'px' => [ 'min' => 1, 'max' => 60, ], ], 'condition' => [ 'layout' => 'splash', 'after_inactivity!' => 'yes', ], ] ); $this->add_control( 'display_times', [ 'label' => __('Display Times', 'bdthemes-element-pack'), 'description' => __('Select number that times want to show popup', 'bdthemes-element-pack'), 'type' => Controls_Manager::NUMBER, 'default' => 3, 'condition' => [ 'layout' => ['splash', 'on_scroll', 'exit'], ] ] ); $this->add_control( 'display_times_expire', [ 'label' => __('Display Times Expiry (Hour)', 'bdthemes-element-pack') . BDTEP_NC, 'type' => Controls_Manager::NUMBER, 'description' => __('Default Cache 12 hours.', 'bdthemes-element-pack'), 'default' => 12, 'condition' => [ 'display_times!' => '', 'layout' => ['splash', 'on_scroll', 'exit'], ] ] ); $this->add_control( 'cache_on_admin', [ 'label' => __('Works on Login Mode', 'bdthemes-element-pack'), 'type' => Controls_Manager::SWITCHER, 'description' => __('The Display time & Times Expiry will works with Login mode. Otherwise your modal will show infinite time on Login Mode.', 'bdthemes-element-pack'), 'render_type' => 'template', 'condition' => [ 'display_times!' => '', 'layout' => ['splash', 'on_scroll', 'exit'], ] ] ); $this->add_control( 'scroll_direction', [ 'label' => esc_html__('Scroll Direction', 'bdthemes-element-pack'), 'type' => Controls_Manager::SELECT, 'default' => 'down', 'options' => [ 'down' => esc_html__('Down', 'bdthemes-element-pack'), 'up' => esc_html__('UP', 'bdthemes-element-pack'), 'selector' => esc_html__('Selector', 'bdthemes-element-pack'), ], 'condition' => [ 'layout' => 'on_scroll', ], ] ); $this->add_control( 'scroll_offset', [ 'label' => __('Offset (%)', 'bdthemes-element-pack'), 'type' => Controls_Manager::SLIDER, 'default' => [ 'size' => 40, ], 'range' => [ 'px' => [ 'min' => 0, 'max' => 100, ], ], 'condition' => [ 'layout' => 'on_scroll', 'scroll_direction' => 'down', ], ] ); $this->add_control( 'scroll_selector', [ 'label' => esc_html__('Selector', 'bdthemes-element-pack'), 'type' => Controls_Manager::TEXT, 'placeholder' => '.my-class', 'description' => __('Type a selector name ex: #my-class, .my-class', 'bdthemes-element-pack'), 'condition' => [ 'layout' => 'on_scroll', 'scroll_direction' => 'selector', ], ] ); $this->add_control( 'after_inactivity', [ 'label' => __('After Inactivity', 'bdthemes-element-pack'), 'type' => Controls_Manager::SWITCHER, 'description' => __('Turn on to show modal within second.', 'bdthemes-element-pack'), 'condition' => [ 'layout' => 'splash', ], ] ); $this->add_control( 'within_second', [ 'label' => __('Within (sec)', 'bdthemes-element-pack'), 'type' => Controls_Manager::SLIDER, 'default' => [ 'size' => 30, ], 'range' => [ 'px' => [ 'min' => 1, 'max' => 180, ], ], 'condition' => [ 'layout' => 'splash', 'after_inactivity!' => '', ], ] ); // $this->add_control( // 'dev_mode', // [ // 'label' => __('Dev Mode', 'bdthemes-element-pack'), // 'default' => 'yes', // 'type' => Controls_Manager::SWITCHER, // 'description' => __('Turn off dev move when your website live so splash screen will show only once.', 'bdthemes-element-pack'), // 'condition' => [ // 'layout' => ['splash', 'exit', 'on_scroll'], // ], // ] // ); $this->add_control( 'modal_width', [ 'label' => esc_html__('Modal Width', 'bdthemes-element-pack'), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => 320, 'max' => 1200, ], ], 'selectors' => [ '.bdt-modal-{{ID}}.bdt-modal .bdt-modal-dialog' => 'width: {{SIZE}}{{UNIT}};', ], ] ); $this->add_control( 'hr_one', [ 'type' => Controls_Manager::DIVIDER, ] ); $this->add_control( 'show_modal_header', [ 'label' => __('Show Modal Header', 'bdthemes-element-pack'), 'type' => Controls_Manager::SWITCHER, 'default' => 'yes', ] ); $this->add_control( 'show_modal_footer', [ 'label' => __('Show Modal Footer', 'bdthemes-element-pack'), 'type' => Controls_Manager::SWITCHER, 'default' => 'yes', ] ); $this->end_controls_section(); $this->start_controls_section( 'section_content_button', [ 'label' => esc_html__('Trigger Button', 'bdthemes-element-pack'), 'condition' => [ 'layout' => 'default', ], ] ); $this->add_control( 'button_text', [ 'label' => esc_html__('Text', 'bdthemes-element-pack'), 'type' => Controls_Manager::TEXT, 'dynamic' => ['active' => true], 'default' => esc_html__('Open Modal', 'bdthemes-element-pack'), ] ); $this->add_responsive_control( 'button_align', [ 'label' => __('Alignment', 'bdthemes-element-pack'), 'type' => Controls_Manager::CHOOSE, 'options' => [ 'left' => [ 'title' => __('Left', 'bdthemes-element-pack'), 'icon' => 'eicon-text-align-left', ], 'center' => [ 'title' => __('Center', 'bdthemes-element-pack'), 'icon' => 'eicon-text-align-center', ], 'right' => [ 'title' => __('Right', 'bdthemes-element-pack'), 'icon' => 'eicon-text-align-right', ], 'justify' => [ 'title' => __('Justified', 'bdthemes-element-pack'), 'icon' => 'eicon-text-align-justify', ], ], 'prefix_class' => 'elementor%s-align-', ] ); $this->add_control( 'size', [ 'label' => __('Size', 'bdthemes-element-pack'), 'type' => Controls_Manager::SELECT, 'default' => 'sm', 'options' => element_pack_button_sizes(), ] ); $this->add_control( 'modal_button_icon', [ 'label' => esc_html__('Icon', 'bdthemes-element-pack'), 'type' => Controls_Manager::ICONS, 'fa4compatibility' => 'button_icon', 'skin' => 'inline', 'label_block' => false ] ); $this->add_control( 'button_icon_align', [ 'label' => esc_html__('Icon Position', 'bdthemes-element-pack'), 'type' => Controls_Manager::SELECT, 'default' => 'right', 'options' => [ 'left' => esc_html__('Before', 'bdthemes-element-pack'), 'right' => esc_html__('After', 'bdthemes-element-pack'), ], 'condition' => [ 'modal_button_icon[value]!' => '', ], ] ); $this->add_control( 'button_icon_indent', [ 'label' => esc_html__('Icon Spacing', 'bdthemes-element-pack'), 'type' => Controls_Manager::SLIDER, 'default' => [ 'size' => 8, ], 'range' => [ 'px' => [ 'max' => 50, ], ], 'condition' => [ 'modal_button_icon[value]!' => '', ], 'selectors' => [ '{{WRAPPER}} .bdt-modal-wrapper .bdt-modal-button-icon.bdt-button-icon-align-right' => 'margin-left: {{SIZE}}{{UNIT}};', '{{WRAPPER}} .bdt-modal-wrapper .bdt-modal-button-icon.bdt-button-icon-align-left' => 'margin-right: {{SIZE}}{{UNIT}};', ], ] ); $this->end_controls_section(); $this->start_controls_section( 'section_modal_header', [ 'label' => esc_html__('Modal Header', 'bdthemes-element-pack'), 'condition' => [ 'show_modal_header' => 'yes' ] ] ); $this->add_control( 'header', [ 'label' => esc_html__('Header Text', 'bdthemes-element-pack'), 'type' => Controls_Manager::TEXT, 'dynamic' => ['active' => true], 'default' => esc_html__('This is your modal header title', 'bdthemes-element-pack'), 'placeholder' => esc_html__('Modal header title', 'bdthemes-element-pack'), 'label_block' => true, ] ); $this->add_control( 'header_align', [ 'label' => esc_html__('Alignment', 'bdthemes-element-pack'), 'type' => Controls_Manager::CHOOSE, 'label_block' => false, 'options' => [ 'left' => [ 'title' => esc_html__('Left', 'bdthemes-element-pack'), 'icon' => 'eicon-text-align-left', ], 'center' => [ 'title' => esc_html__('Center', 'bdthemes-element-pack'), 'icon' => 'eicon-text-align-center', ], 'right' => [ 'title' => esc_html__('Right', 'bdthemes-element-pack'), 'icon' => 'eicon-text-align-right', ], ], 'default' => 'left', ] ); $this->end_controls_section(); $this->start_controls_section( 'section_content_modal', [ 'label' => esc_html__('Modal Content', 'bdthemes-element-pack'), ] ); $this->add_control( 'source', [ 'label' => esc_html__('Select Source', 'bdthemes-element-pack'), 'type' => Controls_Manager::SELECT, 'default' => 'custom', 'options' => [ 'custom' => esc_html__('Custom Content', 'bdthemes-element-pack'), "elementor" => esc_html__('Elementor Template', 'bdthemes-element-pack'), 'anywhere' => esc_html__('AE Template', 'bdthemes-element-pack'), 'custom_section' => esc_html__('Link Section', 'bdthemes-element-pack'), ], ] ); $this->add_control( 'content', [ 'label' => esc_html__('Custom Content', 'bdthemes-element-pack'), 'type' => Controls_Manager::WYSIWYG, 'dynamic' => ['active' => true], 'show_label' => false, 'condition' => ['source' => 'custom'], 'default' => esc_html__('A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.', 'bdthemes-element-pack'), 'placeholder' => esc_html__('Modal content goes here', 'bdthemes-element-pack'), ] ); $this->add_control( 'template_id', [ 'label' => __('Select Template', 'bdthemes-element-pack'), 'type' => Dynamic_Select::TYPE, 'label_block' => true, 'placeholder' => __('Type and select template', 'bdthemes-element-pack'), 'query_args' => [ 'query' => 'elementor_template', ], 'condition' => ['source' => "elementor"], ] ); $this->add_control( 'anywhere_id', [ 'label' => __('Select Template', 'bdthemes-element-pack'), 'type' => Dynamic_Select::TYPE, 'label_block' => true, 'placeholder' => __('Type and select template', 'bdthemes-element-pack'), 'query_args' => [ 'query' => 'anywhere_template', ], 'condition' => ['source' => "anywhere"], ] ); $this->add_control( 'modal_custom_section_id', [ 'label' => __('Section ID', 'bdthemes-element-pack'), 'description' => __('Paste your section ID here. Don\'t need to add # before ID', 'bdthemes-element-pack'), 'type' => Controls_Manager::TEXT, 'placeholder' => 'section-a', 'dynamic' => ['active' => true], 'condition' => ['source' => 'custom_section'], ] ); $this->add_control( 'content_align', [ 'label' => esc_html__('Alignment', 'bdthemes-element-pack') . BDTEP_NC, 'type' => Controls_Manager::CHOOSE, 'label_block' => false, 'options' => [ 'left' => [ 'title' => esc_html__('Left', 'bdthemes-element-pack'), 'icon' => 'eicon-text-align-left', ], 'center' => [ 'title' => esc_html__('Center', 'bdthemes-element-pack'), 'icon' => 'eicon-text-align-center', ], 'right' => [ 'title' => esc_html__('Right', 'bdthemes-element-pack'), 'icon' => 'eicon-text-align-right', ], ], ] ); $this->end_controls_section(); $this->start_controls_section( 'section_modal_footer', [ 'label' => esc_html__('Modal Footer', 'bdthemes-element-pack'), 'condition' => [ 'show_modal_footer' => 'yes' ] ] ); $this->add_control( 'footer', [ 'label' => esc_html__('Footer Text', 'bdthemes-element-pack'), 'type' => Controls_Manager::TEXTAREA, 'dynamic' => ['active' => true], 'default' => esc_html__('Modal footer goes here', 'bdthemes-element-pack'), 'placeholder' => esc_html__('Modal footer goes here', 'bdthemes-element-pack'), 'label_block' => true, ] ); $this->add_control( 'footer_align', [ 'label' => esc_html__('Alignment', 'bdthemes-element-pack'), 'type' => Controls_Manager::CHOOSE, 'label_block' => false, 'options' => [ 'left' => [ 'title' => esc_html__('Left', 'bdthemes-element-pack'), 'icon' => 'eicon-text-align-left', ], 'center' => [ 'title' => esc_html__('Center', 'bdthemes-element-pack'), 'icon' => 'eicon-text-align-center', ], 'right' => [ 'title' => esc_html__('Right', 'bdthemes-element-pack'), 'icon' => 'eicon-text-align-right', ], ], 'default' => 'left', ] ); $this->end_controls_section(); $this->start_controls_section( 'section_modal_additional', [ 'label' => esc_html__('Additional', 'bdthemes-element-pack'), ] ); $this->add_control( 'content_overflow', [ 'label' => __('Overflow Scroll', 'bdthemes-element-pack'), 'description' => __('Show scroll bar when you add huge content in modal.', 'bdthemes-element-pack'), 'type' => Controls_Manager::SWITCHER, ] ); $this->add_control( 'close_button', [ 'label' => esc_html__('Modal Close Button', 'bdthemes-element-pack'), 'description' => esc_html__('When you set modal full screen make sure you don\'t set colse button outside', 'bdthemes-element-pack'), 'type' => Controls_Manager::SELECT, 'default' => 'default', 'options' => [ 'default' => esc_html__('Default', 'bdthemes-element-pack'), 'outside' => esc_html__('Outside', 'bdthemes-element-pack'), 'none' => esc_html__('No Close Button', 'bdthemes-element-pack'), ], ] ); $this->add_control( 'close_btn_delay_show', [ 'label' => __('Close Button Delay Show', 'bdthemes-element-pack'), 'type' => Controls_Manager::SWITCHER, ] ); $this->add_control( 'close_btn_delay_time', [ 'label' => esc_html__('Close Button Delay Time(sec)', 'bdthemes-element-pack'), 'type' => Controls_Manager::SLIDER, 'default' => [ 'size' => 2, ], 'range' => [ 'px' => [ 'min' => 1, 'max' => 60, ], ], 'condition' => [ 'close_btn_delay_show' => 'yes', ], ] ); $this->add_control( 'modal_size', [ 'label' => esc_html__('Full screen', 'bdthemes-element-pack'), 'type' => Controls_Manager::SWITCHER, 'return_value' => 'full', 'condition' => [ 'close_button!' => 'outside', ], ] ); $this->add_control( 'modal_center', [ 'label' => esc_html__('Center Position', 'bdthemes-element-pack'), 'type' => Controls_Manager::SWITCHER, 'return_value' => 'yes', 'condition' => [ 'modal_size!' => 'full', ], ] ); $this->end_controls_section(); //Style $this->start_controls_section( 'section_style_button', [ 'label' => esc_html__('Trigger Button', 'bdthemes-element-pack'), 'tab' => Controls_Manager::TAB_STYLE, 'condition' => [ 'layout' => 'default', ], ] ); $this->start_controls_tabs('tabs_button_style'); $this->start_controls_tab( 'tab_button_normal', [ 'label' => esc_html__('Normal', 'bdthemes-element-pack'), ] ); $this->add_control( 'button_text_color', [ 'label' => esc_html__('Color', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-modal-wrapper .bdt-modal-button' => 'color: {{VALUE}};', '{{WRAPPER}} .bdt-modal-wrapper .bdt-modal-button svg' => 'fill: {{VALUE}};', ], ] ); $this->add_control( 'button_background_color', [ 'label' => esc_html__('Background Color', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-modal-wrapper .bdt-modal-button' => 'background-color: {{VALUE}};', ], ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'button_border', 'label' => esc_html__('Border', 'bdthemes-element-pack'), 'placeholder' => '1px', 'default' => '1px', 'selector' => '{{WRAPPER}} .bdt-modal-wrapper .bdt-modal-button', ] ); $this->add_responsive_control( 'button_border_radius', [ 'label' => esc_html__('Border Radius', 'bdthemes-element-pack'), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => ['px', '%'], 'selectors' => [ '{{WRAPPER}} .bdt-modal-wrapper .bdt-modal-button' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_responsive_control( 'button_text_padding', [ 'label' => esc_html__('Padding', 'bdthemes-element-pack'), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => ['px', 'em', '%'], 'selectors' => [ '{{WRAPPER}} .bdt-modal-wrapper .bdt-modal-button' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_group_control( Group_Control_Box_Shadow::get_type(), [ 'name' => 'button_box_shadow', 'selector' => '{{WRAPPER}} .bdt-modal-wrapper .bdt-modal-button', ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'button_typography', 'label' => esc_html__('Typography', 'bdthemes-element-pack'), 'selector' => '{{WRAPPER}} .bdt-modal-wrapper .bdt-modal-button', ] ); $this->end_controls_tab(); $this->start_controls_tab( 'tab_button_hover', [ 'label' => esc_html__('Hover', 'bdthemes-element-pack'), ] ); $this->add_control( 'button_hover_color', [ 'label' => esc_html__('Color', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-modal-wrapper .bdt-modal-button:hover' => 'color: {{VALUE}};', '{{WRAPPER}} .bdt-modal-wrapper .bdt-modal-button:hover svg' => 'fill: {{VALUE}};', ], ] ); $this->add_control( 'button_background_hover_color', [ 'label' => esc_html__('Background Color', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-modal-wrapper .bdt-modal-button:hover' => 'background-color: {{VALUE}};', ], ] ); $this->add_control( 'button_hover_border_color', [ 'label' => esc_html__('Border Color', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-modal-wrapper .bdt-modal-button:hover' => 'border-color: {{VALUE}};', ], 'condition' => [ 'button_border_border!' => '', ], ] ); $this->add_control( 'hover_animation', [ 'label' => __('Hover Animation', 'bdthemes-element-pack'), 'type' => Controls_Manager::HOVER_ANIMATION, ] ); $this->end_controls_tab(); $this->end_controls_tabs(); $this->end_controls_section(); $this->start_controls_section( 'tab_content_close_button', [ 'label' => esc_html__('Modal Close Button', 'bdthemes-element-pack'), 'tab' => Controls_Manager::TAB_STYLE, 'condition' => [ 'close_button!' => 'none', ], ] ); $this->start_controls_tabs('tabs_close_button_style'); $this->start_controls_tab( 'tab_close_button_normal', [ 'label' => esc_html__('Normal', 'bdthemes-element-pack'), ] ); $this->add_control( 'close_button_color', [ 'label' => esc_html__('Color', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '.bdt-modal-{{ID}}.bdt-modal .bdt-modal-dialog button.bdt-close' => 'color: {{VALUE}};', ], ] ); $this->add_control( 'close_button_backgroun_color', [ 'label' => esc_html__('Background', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '.bdt-modal-{{ID}}.bdt-modal .bdt-modal-dialog button.bdt-close' => 'background: {{VALUE}};', ], ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'close_button_border', 'label' => esc_html__('Border', 'bdthemes-element-pack'), 'placeholder' => '1px', 'default' => '1px', 'selector' => '.bdt-modal-{{ID}}.bdt-modal .bdt-modal-dialog button.bdt-close', ] ); $this->add_responsive_control( 'close_button_border_radius', [ 'label' => esc_html__('Border Radius', 'bdthemes-element-pack'), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => ['px', '%'], 'selectors' => [ '.bdt-modal-{{ID}}.bdt-modal .bdt-modal-dialog button.bdt-close' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_responsive_control( 'close_button_padding', [ 'label' => esc_html__('Padding', 'bdthemes-element-pack'), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => ['px', 'em', '%'], 'selectors' => [ '.bdt-modal-{{ID}}.bdt-modal .bdt-modal-dialog button.bdt-close' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_responsive_control( 'close_button_margin', [ 'label' => esc_html__('Margin', 'bdthemes-element-pack'), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => ['px', 'em', '%'], 'selectors' => [ '.bdt-modal-{{ID}}.bdt-modal .bdt-modal-dialog button.bdt-close' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->end_controls_tab(); $this->start_controls_tab( 'tab_close_button_hover', [ 'label' => esc_html__('Hover', 'bdthemes-element-pack') . BDTEP_NC, ] ); $this->add_control( 'close_button_color_hover', [ 'label' => esc_html__('Color', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '.bdt-modal-{{ID}}.bdt-modal .bdt-modal-dialog button.bdt-close:hover' => 'color: {{VALUE}};', ], ] ); $this->add_control( 'close_button_backgroun_hover', [ 'label' => esc_html__('Background', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '.bdt-modal-{{ID}}.bdt-modal .bdt-modal-dialog button.bdt-close:hover' => 'background: {{VALUE}};', ], ] ); $this->add_control( 'close_button_hover_border_color', [ 'label' => esc_html__('Border Color', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'condition' => [ 'close_button_border_border!' => '', ], 'selectors' => [ '.bdt-modal-{{ID}}.bdt-modal .bdt-modal-dialog button.bdt-close:hover' => 'border-color: {{VALUE}};', ], ] ); $this->add_control( 'close_button_hover_animation', [ 'label' => esc_html__('Animation', 'bdthemes-element-pack'), 'type' => Controls_Manager::HOVER_ANIMATION, ] ); $this->end_controls_tab(); $this->end_controls_tabs(); $this->end_controls_section(); $this->start_controls_section( 'tab_content_header', [ 'label' => esc_html__('Modal Header', 'bdthemes-element-pack'), 'tab' => Controls_Manager::TAB_STYLE, 'condition' => [ 'header!' => '', 'show_modal_header' => 'yes' ], ] ); $this->add_control( 'title_color', [ 'label' => esc_html__('Color', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '.bdt-modal-{{ID}}.bdt-modal .bdt-modal-title' => 'color: {{VALUE}};', ], ] ); $this->add_control( 'header_background', [ 'label' => esc_html__('Background', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '.bdt-modal-{{ID}}.bdt-modal .bdt-modal-header' => 'background-color: {{VALUE}};', ], ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'header_border', 'label' => esc_html__('Border', 'bdthemes-element-pack'), 'placeholder' => '1px', 'default' => '1px', 'selector' => '.bdt-modal-{{ID}}.bdt-modal .bdt-modal-header', ] ); $this->add_responsive_control( 'header_padding', [ 'label' => esc_html__('Padding', 'bdthemes-element-pack'), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => ['px', 'em', '%'], 'selectors' => [ '.bdt-modal-{{ID}}.bdt-modal .bdt-modal-header' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_group_control( Group_Control_Box_Shadow::get_type(), [ 'name' => 'header_box_shadow', 'selector' => '.bdt-modal-{{ID}}.bdt-modal .bdt-modal-header', ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'title_typography', 'selector' => '.bdt-modal-{{ID}}.bdt-modal .bdt-modal-title', ] ); $this->end_controls_section(); $this->start_controls_section( 'section_style_modal', [ 'label' => esc_html__('Modal Content', 'bdthemes-element-pack'), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_control( 'content_text_color', [ 'label' => esc_html__('Text Color', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '.bdt-modal-{{ID}}.bdt-modal .bdt-modal-body' => 'color: {{VALUE}};', ], ] ); $this->add_control( 'content_background', [ 'label' => esc_html__('Background', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '.bdt-modal-{{ID}}.bdt-modal .bdt-modal-body, .bdt-modal-{{ID}}.bdt-modal .bdt-modal-dialog' => 'background-color: {{VALUE}};', ], ] ); $this->add_responsive_control( 'content_border_radius', [ 'label' => esc_html__('Border Radius', 'bdthemes-element-pack') . BDTEP_NC, 'type' => Controls_Manager::DIMENSIONS, 'size_units' => ['px', '%'], 'selectors' => [ '.bdt-modal-{{ID}}.bdt-modal .bdt-modal-dialog' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', '.bdt-modal-{{ID}}.bdt-modal .bdt-modal-header' => 'border-top-right-radius: {{TOP}}{{UNIT}}; border-top-left-radius: {{RIGHT}}{{UNIT}};', '.bdt-modal-{{ID}}.bdt-modal .bdt-modal-footer' => 'border-bottom-right-radius: {{TOP}}{{UNIT}}; border-bottom-left-radius: {{RIGHT}}{{UNIT}};', ], ] ); $this->add_responsive_control( 'content_padding', [ 'label' => esc_html__('Padding', 'bdthemes-element-pack'), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => ['px', 'em', '%'], 'selectors' => [ '.bdt-modal-{{ID}}.bdt-modal .bdt-modal-body' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'content_typography', 'label' => esc_html__('Typography', 'bdthemes-element-pack'), 'selector' => '.bdt-modal-{{ID}}.bdt-modal .bdt-modal-body', ] ); $this->end_controls_section(); $this->start_controls_section( 'tab_content_footer', [ 'label' => esc_html__('Modal Footer', 'bdthemes-element-pack'), 'tab' => Controls_Manager::TAB_STYLE, 'condition' => [ 'footer!' => '', 'show_modal_footer' => 'yes' ], ] ); $this->add_control( 'text_color', [ 'label' => esc_html__('Color', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '.bdt-modal-{{ID}}.bdt-modal .bdt-modal-footer' => 'color: {{VALUE}};', ], ] ); $this->add_control( 'footer_background', [ 'label' => esc_html__('Background', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '.bdt-modal-{{ID}}.bdt-modal .bdt-modal-footer' => 'background-color: {{VALUE}};', ], ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'footer_border', 'label' => esc_html__('Border', 'bdthemes-element-pack'), 'placeholder' => '1px', 'default' => '1px', 'selector' => '.bdt-modal-{{ID}}.bdt-modal .bdt-modal-footer', ] ); $this->add_responsive_control( 'footer_border_radius', [ 'label' => esc_html__('Border Radius', 'bdthemes-element-pack') . BDTEP_NC, 'type' => Controls_Manager::DIMENSIONS, 'size_units' => ['px', '%'], 'selectors' => [ '.bdt-modal-{{ID}}.bdt-modal .bdt-modal-footer' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', '.bdt-modal-{{ID}}.bdt-modal .bdt-modal-dialog' => 'border-bottom-right-radius: {{BOTTOM}}{{UNIT}}; border-bottom-left-radius: {{LEFT}}{{UNIT}};', ], ] ); $this->add_responsive_control( 'footer_padding', [ 'label' => esc_html__('Padding', 'bdthemes-element-pack'), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => ['px', 'em', '%'], 'selectors' => [ '.bdt-modal-{{ID}}.bdt-modal .bdt-modal-footer' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_group_control( Group_Control_Box_Shadow::get_type(), [ 'name' => 'footer_box_shadow', 'selector' => '.bdt-modal-{{ID}}.bdt-modal .bdt-modal-footer', ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'text_typography', 'selector' => '.bdt-modal-{{ID}}.bdt-modal .bdt-modal-footer', ] ); $this->end_controls_section(); $this->start_controls_section( 'section_style_additional', [ 'label' => esc_html__('Additional', 'bdthemes-element-pack'), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_control( 'overlay_background', [ 'label' => esc_html__('Overlay Background', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '.bdt-modal-{{ID}}.bdt-modal' => 'background-color: {{VALUE}};', ], ] ); $this->add_control( 'opacity', [ 'label' => esc_html__('Opacity', 'bdthemes-element-pack'), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'max' => 1, 'min' => 0.10, 'step' => 0.01, ], ], 'selectors' => [ '.bdt-modal-{{ID}}.bdt-modal' => 'opacity: {{SIZE}};', ], ] ); $this->end_controls_section(); } public function render_alert() { ?> <div class="bdt-alert-success" data-bdt-alert> <a class="bdt-alert-close" data-bdt-close></a> <p><?php esc_html_e('Exit Popup will only work on preview mode. So please don\'t worry about Editor mode.', 'bdthemes-element-pack'); ?></p> </div> <?php } public function render() { $settings = $this->get_settings_for_display(); $id = 'bdt-modal-' . $this->get_id(); $edit_mode = Element_Pack_Loader::elementor()->editor->is_edit_mode(); $this->add_render_attribute('button', 'class', ['bdt-modal-button', 'elementor-button']); $this->add_render_attribute('modal', 'id', $id); $this->add_render_attribute('modal', 'class', 'bdt-modal-' . $this->get_id()); $this->add_render_attribute('modal', 'data-bdt-modal', ''); if ($settings['modal_size'] !== 'full') { $this->add_render_attribute('modal', 'class', 'bdt-modal'); } else { $this->add_render_attribute('modal', 'class', 'bdt-modal bdt-modal-full'); $this->add_render_attribute('modal-body', 'bdt-height-viewport', 'offset-top: .bdt-modal-header; offset-bottom: .bdt-modal-footer'); } if ($settings['modal_center'] === 'yes') { $this->add_render_attribute('modal', 'class', 'bdt-flex-top'); } $this->add_render_attribute('modal-dialog', 'class', 'bdt-modal-dialog'); if ($settings['modal_center'] === 'yes') { $this->add_render_attribute('modal-dialog', 'class', 'bdt-margin-auto-vertical'); } if (!empty($settings['size'])) { $this->add_render_attribute('button', 'class', 'elementor-size-' . $settings['size']); } if ($settings['hover_animation']) { $this->add_render_attribute('button', 'class', 'elementor-animation-' . $settings['hover_animation']); } $this->add_render_attribute('button', 'data-bdt-toggle', 'target: #' . $id); $this->add_render_attribute('button', 'href', 'javascript:void(0)'); $this->add_render_attribute('modal-body', 'class', 'bdt-modal-body'); $this->add_render_attribute('modal-body', 'class', 'bdt-text-' . esc_attr($settings['content_align'])); if ('yes' === $settings['content_overflow']) { $this->add_render_attribute('modal-body', 'bdt-overflow-auto', ''); } $splash_after = ($settings['splash_after']) ? ($settings['splash_after']['size'] * 1000) : 500; $scroll_direction = ($settings['scroll_direction']) ?: false; $modal_custom_section_id = isset($settings['modal_custom_section_id']) ? '#' . $settings['modal_custom_section_id'] : false; $this->add_render_attribute( [ 'modal' => [ 'data-settings' => [ wp_json_encode([ "id" => ("custom" == $settings["layout"] and !empty($settings["modal_custom_id"])) ? $settings["modal_custom_id"] : "bdt-modal-" . $this->get_id(), "widgetId" => "bdt-modal-" . $this->get_id(), "layout" => $settings["layout"], "splashDelay" => ("splash" == $settings["layout"]) ? $splash_after : false, "splashInactivity" => (isset($settings["within_second"])) ? $settings["within_second"]['size'] * 1000 : false, // "dev" => ("yes" == $settings["dev_mode"]) ? true : false, "displayTimes" => isset($settings['display_times']) ? $settings['display_times'] : false, "displayTimesExpire" => isset($settings['display_times_expire']) && !empty($settings['display_times_expire']) ? (int) $settings['display_times_expire'] : 12, "cacheOnAdmin" => isset($settings['cache_on_admin']) && $settings['cache_on_admin'] == 'yes' ? true : false, "scrollDirection" => ("on_scroll" == $settings["layout"]) ? $scroll_direction : false, "scrollOffset" => ("on_scroll" == $settings["layout"] and 'down' === $settings['scroll_direction']) ? $settings['scroll_offset']['size'] : false, "scrollSelector" => (isset($settings["scroll_selector"])) ? $settings["scroll_selector"] : false, "modal_id" => '#' . $id, "custom_section" => $modal_custom_section_id, "closeBtnDelayShow" => ("yes" == $settings["close_btn_delay_show"]) ? true : false, "delayTime" => isset($settings["close_btn_delay_time"]['size']) ? $settings["close_btn_delay_time"]['size'] * 1000 : false, "pageID" => get_the_ID() ]) ] ] ] ); if ($this->ep_is_edit_mode() && ('exit' == $settings['layout'])) { $this->render_alert(); } ?> <div class="bdt-modal-wrapper"> <?php $this->render_button(); ?> <div <?php echo $this->get_render_attribute_string('modal'); ?>> <div <?php echo $this->get_render_attribute_string('modal-dialog'); ?>> <?php if ($settings['close_button'] != 'none') : ?> <button class="bdt-modal-close-<?php echo esc_attr($settings['close_button']); ?> elementor-animation-<?php echo esc_attr($settings['close_button_hover_animation']); ?>" id="bdt-modal-close-button" type="button" data-bdt-close></button> <?php endif; ?> <?php if ($settings['header'] and $settings['show_modal_header']) : ?> <div class="bdt-modal-header bdt-text-<?php echo esc_attr($settings['header_align']); ?>"> <h3 class="bdt-modal-title"><?php echo wp_kses_post($settings['header']); ?></h3> </div> <?php endif; ?> <div <?php echo $this->get_render_attribute_string('modal-body'); ?>> <?php if ('custom' == $settings['source'] and !empty($settings['content'])) { echo $this->parse_text_editor($settings['content']); } elseif ("elementor" == $settings['source'] and !empty($settings['template_id'])) { echo Element_Pack_Loader::elementor()->frontend->get_builder_content_for_display($settings['template_id']); echo element_pack_template_edit_link($settings['template_id']); } elseif ('anywhere' == $settings['source'] and !empty($settings['anywhere_id'])) { echo Element_Pack_Loader::elementor()->frontend->get_builder_content_for_display($settings['anywhere_id']); echo element_pack_template_edit_link($settings['anywhere_id']); } ?> </div> <?php if ($settings['footer'] and $settings['show_modal_footer']) : ?> <div class="bdt-modal-footer bdt-text-<?php echo esc_attr($settings['footer_align']); ?>"> <?php echo wp_kses_post($settings['footer']); ?> </div> <?php endif; ?> </div> </div> </div> <?php } protected function render_button() { $settings = $this->get_settings_for_display(); if ('default' !== $settings['layout']) { return; } $this->add_render_attribute('icon-align', 'class', 'bdt-button-icon-align-' . $settings['button_icon_align']); $this->add_render_attribute('icon-align', 'class', 'bdt-modal-button-icon elementor-button-icon'); $this->add_render_attribute('text', 'class', 'elementor-button-text'); if (!isset($settings['button_icon']) && !Icons_Manager::is_migration_allowed()) { // add old default $settings['button_icon'] = 'fas fa-arrow-right'; } $migrated = isset($settings['__fa4_migrated']['modal_button_icon']); $is_new = empty($settings['button_icon']) && Icons_Manager::is_migration_allowed(); ?> <a <?php echo $this->get_render_attribute_string('button'); ?>> <!-- <span <?php //echo $this->get_render_attribute_string( 'content-wrapper' ); ?>> --> <?php if (!empty($settings['modal_button_icon']['value'])) : ?> <span <?php echo $this->get_render_attribute_string('icon-align'); ?>> <?php if ($is_new || $migrated) : Icons_Manager::render_icon($settings['modal_button_icon'], ['aria-hidden' => 'true', 'class' => 'fa-fw']); else : ?> <i class="<?php echo esc_attr($settings['button_icon']); ?>" aria-hidden="true"></i> <?php endif; ?> </span> <?php endif; ?> <span <?php echo $this->get_render_attribute_string('text'); ?>><?php echo wp_kses($settings['button_text'], element_pack_allow_tags('title')); ?></span> <!-- </span> --> </a> <?php } }