PATH:
home
/
thebhoeo
/
.trash
/
woodmart
/
inc
/
integrations
/
elementor
/
elements
<?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 array( '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', array( 'label' => esc_html__( 'General', 'woodmart' ), ) ); $this->add_control( 'popup_id', array( 'label' => esc_html__( 'ID', 'woodmart' ), 'type' => Controls_Manager::TEXT, 'default' => 'popup-' . uniqid(), ) ); $this->add_control( 'content', array( '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', array( 'label' => esc_html__( 'Button', 'woodmart' ), ) ); woodmart_get_button_content_general_map( $this, array( 'link' => false, 'smooth_scroll' => false, 'collapsible_content' => false, ) ); $this->add_control( 'custom_attributes', array( 'label' => esc_html__( 'Custom attributes', 'woodmart' ), 'type' => Controls_Manager::TEXTAREA, 'ai' => array( 'active' => false, ), 'placeholder' => esc_html__( 'key|value', 'woodmart' ), 'description' => esc_html__( 'Set custom attributes for the link element. Separate attribute keys from values using the | (pipe) character. Separate key-value pairs with a comma.', 'woodmart' ), 'classes' => 'elementor-control-direction-ltr', ) ); $this->end_controls_section(); /** * Style tab. */ /** * General settings. */ $this->start_controls_section( 'general_style_section', array( 'label' => esc_html__( 'General', 'woodmart' ), 'tab' => Controls_Manager::TAB_STYLE, ) ); $this->add_control( 'width', array( 'label' => esc_html__( 'Width', 'woodmart' ), 'type' => Controls_Manager::SLIDER, 'default' => array( 'size' => 800, ), 'range' => array( 'px' => array( 'min' => 150, 'max' => 2000, 'step' => 10, ), ), ) ); $this->add_control( 'padding', array( 'label' => esc_html__( 'Padding', 'woodmart' ), 'type' => Controls_Manager::SLIDER, 'size_units' => array( 'px' ), 'range' => array( 'px' => array( 'min' => 0, 'max' => 200, 'step' => 1, ), ), ) ); $this->end_controls_section(); /** * Button settings. */ $this->start_controls_section( 'button_style_section', array( '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 = array( 'popup_id' => 'my_popup', 'content' => '', 'link' => array(), 'width' => 800, ); $settings = wp_parse_args( $this->get_settings_for_display(), $default_settings ); $inline_styles_settings = array( '--wd-popup-width' => $settings['width']['size'] . 'px', ); if ( ! empty( $settings['padding']['size'] ) || 0 == $settings['padding']['size'] ) { //phpcs:ignore $inline_styles_settings['padding'] = $settings['padding']['size'] . $settings['padding']['unit']; } $inline_styles = ''; foreach ( $inline_styles_settings as $prop => $val ) { $inline_styles .= $prop . ':' . $val . ';'; } $settings['link']['url'] = '#' . esc_attr( $settings['popup_id'] ); $settings['link']['custom_attributes'] = ! empty( $settings['custom_attributes'] ) ? $settings['custom_attributes'] : ''; $settings['custom_classes'] = 'wd-open-popup'; woodmart_enqueue_js_library( 'magnific' ); woodmart_enqueue_js_script( 'popup-element' ); woodmart_enqueue_inline_style( 'mfp-popup' ); woodmart_enqueue_inline_style( 'mod-animations-transform' ); woodmart_enqueue_inline_style( 'mod-transform' ); ?> <?php woodmart_elementor_button_template( $settings ); ?> <?php if ( $settings['content'] ) : ?> <div id="<?php echo esc_attr( $settings['popup_id'] ); ?>" class="mfp-hide wd-popup wd-popup-element wd-scroll-content wd-entry-content<?php echo woodmart_get_old_classes( ' woodmart-content-popup' ); ?>" style="<?php echo esc_attr( $inline_styles ); ?>"> <?php echo woodmart_get_html_block( $settings['content'], true ); // phpcs:ignore ?> </div> <?php endif; ?> <?php } } Plugin::instance()->widgets_manager->register( new Popup() );
[-] class-widget-products.php
[edit]
[-] class-countdown.php
[edit]
[-] class-off-canvas-column-btn.php
[edit]
[-] class-video.php
[edit]
[-] class-author-area.php
[edit]
[+]
banner
[-] class-text-block.php
[edit]
[-] class-product-filters.php
[edit]
[-] class-timeline.php
[edit]
[+]
blog
[-] class-testimonials.php
[edit]
[-] class-size-guide.php
[edit]
[-] class-google-map.php
[edit]
[-] class-title.php
[edit]
[-] class-image-hotspot.php
[edit]
[-] class-mailchimp.php
[edit]
[-] class-page-title.php
[edit]
[-] class-page-heading.php
[edit]
[-] class-product-categories.php
[edit]
[-] class-compare-images.php
[edit]
[-] class-nested-carousel.php
[edit]
[-] class-table.php
[edit]
[-] class-team-member.php
[edit]
[-] class-3d-view.php
[edit]
[-] class-products-brands.php
[edit]
[-] class-slider.php
[edit]
[+]
products
[-] class-image.php
[edit]
[-] class-sidebar.php
[edit]
[-] class-tabs.php
[edit]
[-] class-counter.php
[edit]
[-] class-accordion.php
[edit]
[-] class-open-street-map.php
[edit]
[-] class-wishlist.php
[edit]
[-] class-search.php
[edit]
[+]
..
[-] class-social.php
[edit]
[+]
infobox
[-] class-toggle.php
[edit]
[-] class-contact-form-7.php
[edit]
[-] class-menu-anchor.php
[edit]
[+]
instagram
[-] class-menu-price.php
[edit]
[-] class-breadcrumbs.php
[edit]
[-] class-list.php
[edit]
[+]
products-tabs
[-] class-popup.php
[edit]
[-] class-mega-menu.php
[edit]
[-] class-extra-menu-list.php
[edit]
[+]
portfolio
[-] class-pricing-tables.php
[edit]
[-] class-marquee.php
[edit]
[-] class-twitter.php
[edit]
[-] class-compare.php
[edit]
[-] class-images-gallery.php
[edit]
[+]
button