PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
| Dir : /home/oligap/www/wp-content/themes/woodmart/inc/integrations/elementor/elements/ |
| Server: Linux cloud.virginhosting.lk 4.18.0-477.27.2.lve.el8.x86_64 #1 SMP Wed Oct 11 12:32:56 UTC 2023 x86_64 IP: 128.140.68.198 |
| Dir : /home/oligap/www/wp-content/themes/woodmart/inc/integrations/elementor/elements/class-popup.php |
<?php
/**
* Popup map.
*/
namespace XTS\Elementor;
use Elementor\Widget_Base;
use Elementor\Controls_Manager;
use Elementor\Plugin;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Direct access not allowed.
}
/**
* Elementor widget that inserts an embeddable content into the page, from any given URL.
*
* @since 1.0.0
*/
class Popup extends Widget_Base {
/**
* Get widget name.
*
* @since 1.0.0
* @access public
*
* @return string Widget name.
*/
public function get_name() {
return 'wd_popup';
}
/**
* Get widget title.
*
* @since 1.0.0
* @access public
*
* @return string Widget title.
*/
public function get_title() {
return esc_html__( 'Popup', 'woodmart' );
}
/**
* Get widget icon.
*
* @since 1.0.0
* @access public
*
* @return string Widget icon.
*/
public function get_icon() {
return 'wd-icon-popup';
}
/**
* Get widget categories.
*
* @since 1.0.0
* @access public
*
* @return array Widget categories.
*/
public function get_categories() {
return [ 'wd-elements' ];
}
/**
* Register the widget controls.
*
* @since 1.0.0
* @access protected
*/
protected function register_controls() {
/**
* Content tab.
*/
/**
* General settings.
*/
$this->start_controls_section(
'general_content_section',
[
'label' => esc_html__( 'General', 'woodmart' ),
]
);
$this->add_control(
'popup_id',
[
'label' => esc_html__( 'ID', 'woodmart' ),
'type' => Controls_Manager::TEXT,
'default' => 'popup-' . uniqid(),
]
);
$this->add_control(
'content',
[
'label' => esc_html__( 'Content', 'woodmart' ),
'type' => Controls_Manager::SELECT,
'options' => woodmart_get_elementor_html_blocks_array(),
'description' => function_exists( 'woodmart_get_html_block_links' ) ? woodmart_get_html_block_links() : '',
'default' => '0',
]
);
$this->end_controls_section();
/**
* Button settings.
*/
$this->start_controls_section(
'button_content_section',
[
'label' => esc_html__( 'Button', 'woodmart' ),
]
);
woodmart_get_button_content_general_map(
$this,
[
'link' => false,
'smooth_scroll' => false,
]
);
$this->end_controls_section();
/**
* Style tab.
*/
/**
* General settings.
*/
$this->start_controls_section(
'general_style_section',
[
'label' => esc_html__( 'General', 'woodmart' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_control(
'width',
[
'label' => esc_html__( 'Width', 'woodmart' ),
'type' => Controls_Manager::SLIDER,
'default' => [
'size' => 800,
],
'range' => [
'px' => [
'min' => 150,
'max' => 2000,
'step' => 10,
],
],
]
);
$this->end_controls_section();
/**
* Button settings.
*/
$this->start_controls_section(
'button_style_section',
[
'label' => esc_html__( 'Button', 'woodmart' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
woodmart_get_button_style_general_map( $this );
woodmart_get_button_style_layout_map( $this );
woodmart_get_button_style_icon_map( $this );
$this->end_controls_section();
}
/**
* Render the widget output on the frontend.
*
* Written in PHP and used to generate the final HTML.
*
* @since 1.0.0
*
* @access protected
*/
protected function render() {
$default_settings = [
'popup_id' => 'my_popup',
'content' => '',
'link' => array(),
'width' => 800,
];
$settings = wp_parse_args( $this->get_settings_for_display(), $default_settings );
$settings['link']['url'] = '#' . esc_attr( $settings['popup_id'] );
$settings['custom_classes'] = 'wd-open-popup';
woodmart_enqueue_js_library( 'magnific' );
woodmart_enqueue_js_script( 'popup-element' );
woodmart_enqueue_inline_style( 'mfp-popup' );
?>
<?php woodmart_elementor_button_template( $settings ); ?>
<?php if ( $settings['content'] ) : ?>
<div id="<?php echo esc_attr( $settings['popup_id'] ); ?>" class="mfp-with-anim wd-popup wd-popup-element mfp-hide<?php echo woodmart_get_old_classes( ' woodmart-content-popup' ); ?>" style="max-width:<?php echo esc_attr( $settings['width']['size'] ); ?>px;">
<div class="wd-popup-inner">
<?php echo woodmart_get_html_block( $settings['content'] ); // phpcs:ignore ?>
</div>
</div>
<?php endif; ?>
<?php
}
}
Plugin::instance()->widgets_manager->register_widget_type( new Popup() );