PATH:
home
/
thebhoeo
/
public_html
/
wp-content
/
themes
/
woodmart
/
inc
/
integrations
/
elementor
/
elements
/
banner
<?php /** * Promo banner map. * * @package woodmart */ namespace XTS\Elementor; use Elementor\Group_Control_Background; use Elementor\Group_Control_Image_Size; use Elementor\Group_Control_Typography; use Elementor\Group_Control_Border; use Elementor\Utils; use Elementor\Widget_Base; use Elementor\Controls_Manager; use Elementor\Group_Control_Box_Shadow; 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 Banner extends Widget_Base { /** * Get widget name. * * @since 1.0.0 * @access public * * @return string Widget name. */ public function get_name() { return 'wd_banner'; } /** * Get widget title. * * @since 1.0.0 * @access public * * @return string Widget title. */ public function get_title() { return esc_html__( 'Promo Banner', 'woodmart' ); } /** * Get widget icon. * * @since 1.0.0 * @access public * * @return string Widget icon. */ public function get_icon() { return 'wd-icon-banner'; } /** * 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( 'link', array( 'label' => esc_html__( 'Link', 'woodmart' ), 'description' => esc_html__( 'Enter URL if you want this banner to have a link.', 'woodmart' ), 'type' => Controls_Manager::URL, 'default' => array( 'url' => '#', 'is_external' => false, 'nofollow' => false, ), ) ); $this->end_controls_section(); /** * Image settings. */ $this->start_controls_section( 'image_content_section', array( 'label' => esc_html__( 'Background', 'woodmart' ), ) ); $this->add_control( 'source_type', array( 'label' => esc_html__( 'Source', 'woodmart' ), 'type' => Controls_Manager::SELECT, 'options' => array( 'image' => esc_html__( 'Image', 'woodmart' ), 'video' => esc_html__( 'Video', 'woodmart' ), ), 'default' => 'image', ) ); $this->add_control( 'video', array( 'label' => esc_html__( 'Choose video', 'woodmart' ), 'type' => Controls_Manager::MEDIA, 'media_type' => 'video', 'condition' => array( 'source_type' => 'video', ), ) ); $this->add_control( 'video_poster', array( 'label' => esc_html__( 'Fallback image', 'woodmart' ), 'type' => Controls_Manager::MEDIA, 'condition' => array( 'source_type' => 'video', ), ) ); $this->add_group_control( Group_Control_Image_Size::get_type(), array( 'name' => 'video_poster', 'fields_options' => array( 'size' => array( 'label' => esc_html__( 'Fallback image size', 'woodmart' ), ), 'custom_dimension' => array( 'label' => esc_html__( 'Fallback image Dimension', 'woodmart' ), ), ), 'default' => 'full', 'separator' => 'none', 'condition' => array( 'source_type' => 'video', ), ) ); $this->add_control( 'image', array( 'label' => esc_html__( 'Choose image', 'woodmart' ), 'type' => Controls_Manager::MEDIA, 'default' => array( 'url' => Utils::get_placeholder_image_src(), ), 'condition' => array( 'source_type' => 'image', ), ) ); $this->add_group_control( Group_Control_Image_Size::get_type(), array( 'name' => 'image', 'default' => 'thumbnail', 'separator' => 'none', 'condition' => array( 'source_type' => 'image', ), ) ); $this->add_control( 'custom_height', array( 'label' => esc_html__( 'Fixed height', 'woodmart' ), 'type' => Controls_Manager::SWITCHER, 'default' => 'no', 'label_on' => esc_html__( 'Yes', 'woodmart' ), 'label_off' => esc_html__( 'No', 'woodmart' ), 'return_value' => 'Yes', ) ); $this->add_responsive_control( 'image_height', array( 'label' => esc_html__( 'Banner height', 'woodmart' ), 'type' => Controls_Manager::SLIDER, 'size_units' => array( 'px', 'vh' ), 'default' => array( 'size' => 340, ), 'range' => array( 'px' => array( 'min' => 100, 'max' => 2000, 'step' => 1, ), 'vh' => array( 'min' => 0, 'max' => 100, 'step' => 1, ), ), 'selectors' => array( '{{WRAPPER}}' => '--wd-img-height: {{SIZE}}{{UNIT}};', ), 'condition' => array( 'custom_height' => array( 'Yes' ), ), ) ); $this->add_control( 'image_bg_position', array( 'label' => esc_html__( 'Image Position', 'woodmart' ), 'type' => Controls_Manager::SELECT, 'options' => array( 'center center' => esc_html__( 'Center', 'woodmart' ), 'center top' => esc_html__( 'Top', 'woodmart' ), 'center bottom' => esc_html__( 'Bottom', 'woodmart' ), 'left center' => esc_html__( 'Left', 'woodmart' ), 'right center' => esc_html__( 'Right', 'woodmart' ), ), 'default' => 'center center', 'selectors' => array( '{{WRAPPER}} .banner-image' => 'object-position: {{VALUE}};', ), 'condition' => array( 'custom_height' => array( 'Yes' ), 'source_type' => 'image', ), ) ); $this->end_controls_section(); /** * Content settings. */ $this->start_controls_section( 'content_section', array( 'label' => esc_html__( 'Content', 'woodmart' ), ) ); $this->add_control( 'subtitle', array( 'label' => esc_html__( 'Subtitle', 'woodmart' ), 'type' => Controls_Manager::TEXTAREA, 'default' => 'Banner subtitle text', ) ); $this->add_control( 'title', array( 'label' => esc_html__( 'Title', 'woodmart' ), 'type' => Controls_Manager::TEXTAREA, 'default' => 'Banner title, click to edit.', ) ); $this->add_control( 'content', array( 'label' => esc_html__( 'Content', 'woodmart' ), 'type' => Controls_Manager::WYSIWYG, 'default' => 'Banner content text', ) ); $this->add_control( 'btn_text', array( 'label' => esc_html__( 'Button text', 'woodmart' ), 'type' => Controls_Manager::TEXT, 'default' => 'Read more', ) ); $this->end_controls_section(); /** * Countdown settings. */ $this->start_controls_section( 'countdown_section', array( 'label' => esc_html__( 'Countdown', 'woodmart' ), ) ); $this->add_control( 'show_countdown', array( 'label' => esc_html__( 'Show countdown', 'woodmart' ), 'type' => Controls_Manager::SWITCHER, 'default' => 'no', 'label_on' => esc_html__( 'Yes', 'woodmart' ), 'label_off' => esc_html__( 'No', 'woodmart' ), 'return_value' => 'yes', ) ); $this->add_control( 'date', array( 'label' => esc_html__( 'Date', 'woodmart' ), 'type' => Controls_Manager::DATE_TIME, 'default' => gmdate( 'Y-m-d', strtotime( ' +2 months' ) ), 'condition' => array( 'show_countdown' => array( 'yes' ), ), ) ); $this->add_control( 'hide_countdown_on_finish', array( 'label' => esc_html__( 'Hide countdown on finish', 'woodmart' ), 'type' => Controls_Manager::SWITCHER, 'default' => 'no', 'label_on' => esc_html__( 'Yes', 'woodmart' ), 'label_off' => esc_html__( 'No', 'woodmart' ), 'return_value' => 'yes', 'condition' => array( 'show_countdown' => array( 'yes' ), ), ) ); $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( 'style', array( 'label' => esc_html__( 'Style', 'woodmart' ), 'description' => esc_html__( 'You can use some of our predefined styles for your banner content.', 'woodmart' ), 'type' => Controls_Manager::SELECT, 'options' => array( 'default' => esc_html__( 'Default', 'woodmart' ), 'mask' => esc_html__( 'Color mask', 'woodmart' ), 'shadow' => esc_html__( 'Mask with shadow', 'woodmart' ), 'border' => esc_html__( 'Bordered', 'woodmart' ), 'background' => esc_html__( 'Bordered background', 'woodmart' ), 'content-background' => esc_html__( 'Content background', 'woodmart' ), ), 'default' => 'default', ) ); $this->add_control( 'hover', array( 'label' => esc_html__( 'Hover effect', 'woodmart' ), 'description' => esc_html__( 'Set beautiful hover effects for your banner.', 'woodmart' ), 'type' => Controls_Manager::SELECT, 'options' => array( 'zoom' => esc_html__( 'Zoom image', 'woodmart' ), 'parallax' => esc_html__( 'Parallax', 'woodmart' ), 'background' => esc_html__( 'Background', 'woodmart' ), 'border' => esc_html__( 'Bordered', 'woodmart' ), 'zoom-reverse' => esc_html__( 'Zoom reverse', 'woodmart' ), 'none' => esc_html__( 'Disable', 'woodmart' ), ), 'default' => 'none', ) ); $this->add_control( 'rounding_size', array( 'label' => esc_html__( 'Rounding', 'woodmart' ), 'type' => Controls_Manager::SELECT, 'options' => array( '' => esc_html__( 'Inherit', 'woodmart' ), '0' => esc_html__( '0', 'woodmart' ), '5' => esc_html__( '5', 'woodmart' ), '8' => esc_html__( '8', 'woodmart' ), '12' => esc_html__( '12', 'woodmart' ), 'custom' => esc_html__( 'Custom', 'woodmart' ), ), 'default' => '', 'selectors' => array( '{{WRAPPER}}' => '--wd-brd-radius: {{VALUE}}px;', ), ) ); $this->add_control( 'custom_rounding_size', array( 'label' => esc_html__( 'Custom rounding', 'woodmart' ), 'type' => Controls_Manager::SLIDER, 'size_units' => array( '%', 'px' ), 'range' => array( 'px' => array( 'min' => 1, 'max' => 300, 'step' => 1, ), '%' => array( 'min' => 1, 'max' => 100, 'step' => 1, ), ), 'selectors' => array( '{{WRAPPER}}' => '--wd-brd-radius: {{SIZE}}{{UNIT}};', ), 'condition' => array( 'rounding_size' => array( 'custom' ), ), ) ); $this->add_control( 'woodmart_color_scheme', array( 'label' => esc_html__( 'Color Scheme', 'woodmart' ), 'type' => Controls_Manager::SELECT, 'options' => array( '' => esc_html__( 'Inherit', 'woodmart' ), 'light' => esc_html__( 'Light', 'woodmart' ), 'dark' => esc_html__( 'Dark', 'woodmart' ), ), 'default' => '', ) ); $this->add_control( 'title_size', array( 'label' => esc_html__( 'Predefined size', 'woodmart' ), 'type' => Controls_Manager::SELECT, 'options' => array( 'default' => esc_html__( 'Default (22px)', 'woodmart' ), 'small' => esc_html__( 'Small (16px)', 'woodmart' ), 'large' => esc_html__( 'Large (26px)', 'woodmart' ), 'extra-large' => esc_html__( 'Extra Large (36px)', 'woodmart' ), ), 'default' => 'default', ) ); $this->add_control( 'custom_content_bg_color', array( 'label' => esc_html__( 'Content background color', 'woodmart' ), 'type' => Controls_Manager::COLOR, 'selectors' => array( '{{WRAPPER}} .wrapper-content-banner' => 'background-color: {{VALUE}}', ), 'condition' => array( 'style' => 'content-background', ), ) ); $this->end_controls_section(); /** * Title settings. */ $this->start_controls_section( 'title_style_section', array( 'label' => esc_html__( 'Title', 'woodmart' ), 'tab' => Controls_Manager::TAB_STYLE, ) ); $this->add_control( 'title_tag', array( 'label' => esc_html__( 'Tag', 'woodmart' ), 'type' => Controls_Manager::SELECT, 'options' => array( 'h1' => esc_html__( 'h1', 'woodmart' ), 'h2' => esc_html__( 'h2', 'woodmart' ), 'h3' => esc_html__( 'h3', 'woodmart' ), 'h4' => esc_html__( 'h4', 'woodmart' ), 'h5' => esc_html__( 'h5', 'woodmart' ), 'h6' => esc_html__( 'h6', 'woodmart' ), 'p' => esc_html__( 'p', 'woodmart' ), 'div' => esc_html__( 'div', 'woodmart' ), 'span' => esc_html__( 'span', 'woodmart' ), ), 'default' => 'h4', ) ); $this->add_control( 'custom_title_color', array( 'label' => esc_html__( 'Color', 'woodmart' ), 'type' => Controls_Manager::COLOR, 'selectors' => array( '{{WRAPPER}} .banner-title' => 'color: {{VALUE}}', ), ) ); $this->add_group_control( Group_Control_Typography::get_type(), array( 'name' => 'title_typography', 'label' => esc_html__( 'Custom typography', 'woodmart' ), 'selector' => '{{WRAPPER}} .banner-title', ) ); $this->add_control( 'title_decoration_divider', array( 'label' => esc_html__( 'Highlight', 'woodmart' ), 'separator' => 'before', 'type' => Controls_Manager::HEADING, ) ); $this->add_control( 'title_decoration_notice', array( 'type' => Controls_Manager::RAW_HTML, 'content_classes' => 'elementor-panel-alert elementor-panel-alert-info', 'raw' => esc_html__( 'The text must be wrapped with the <u></u> tag to highlight it.', 'woodmart' ), ) ); $this->add_control( 'title_decoration_style', array( 'label' => esc_html__( 'Style', 'woodmart' ), 'type' => Controls_Manager::SELECT, 'options' => array( 'default' => esc_html__( 'Default', 'woodmart' ), 'colored' => esc_html__( 'Primary color', 'woodmart' ), 'colored-alt' => esc_html__( 'Primary color + secondary font', 'woodmart' ), 'bordered' => esc_html__( 'Bordered', 'woodmart' ), 'gradient' => esc_html__( 'Gradient', 'woodmart' ), ), 'default' => 'default', ) ); $this->add_group_control( Group_Control_Background::get_type(), array( 'name' => 'title_decoration_gradient', 'types' => array( 'gradient' ), 'selector' => '{{WRAPPER}} .wd-underline-gradient u', 'condition' => array( 'title_decoration_style' => 'gradient', ), ) ); $this->add_group_control( Group_Control_Typography::get_type(), array( 'name' => 'title_decoration_typography', 'label' => esc_html__( 'Typography', 'woodmart' ), 'selector' => '{{WRAPPER}} .banner-title u', 'condition' => array( 'title_decoration_style' => 'default', ), ) ); $this->add_control( 'title_decoration_color_type', array( 'label' => esc_html__( 'Color Type', 'elementor' ), 'type' => Controls_Manager::CHOOSE, 'options' => array( 'classic' => array( 'title' => esc_html__( 'Classic', 'elementor' ), 'icon' => 'eicon-paint-brush', ), 'gradient' => array( 'title' => esc_html__( 'Gradient', 'elementor' ), 'icon' => 'eicon-barcode', ), ), 'toggle' => false, 'default' => 'classic', 'condition' => array( 'title_decoration_style' => 'default', ), 'render_type' => 'ui', ) ); $this->add_control( 'title_decoration_color', array( 'label' => esc_html__( 'Color', 'woodmart' ), 'type' => Controls_Manager::COLOR, 'selectors' => array( '{{WRAPPER}} .banner-title u' => 'color: {{VALUE}}', ), 'condition' => array( 'title_decoration_style' => 'default', 'title_decoration_color_type' => 'classic', ), ) ); woodmart_elementor_get_gradient_controls_map( $this, 'text', '{{WRAPPER}} .banner-title u', array( 'title_decoration_style' => 'default', 'title_decoration_color_type' => 'gradient', ) ); $this->add_group_control( Group_Control_Background::get_type(), array( 'name' => 'title_decoration_background', 'types' => array( 'classic', 'gradient' ), 'selector' => '{{WRAPPER}} .banner-title u', 'separator' => 'before', 'condition' => array( 'title_decoration_style' => 'default', 'title_decoration_color_type' => 'classic', ), ) ); $this->add_group_control( Group_Control_Border::get_type(), array( 'name' => 'title_decoration_border', 'selector' => '{{WRAPPER}} .banner-title u', 'separator' => 'before', 'condition' => array( 'title_decoration_style' => 'default', ), ) ); $this->add_responsive_control( 'title_decoration_border_radius', array( 'label' => esc_html__( 'Border radius', 'woodmart' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => array( 'px', '%' ), 'condition' => array( 'title_decoration_style' => 'default', ), 'selectors' => array( '{{WRAPPER}} .banner-title u' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ), ) ); $this->add_group_control( Group_Control_Box_Shadow::get_type(), array( 'name' => 'title_decoration_box_shadow', 'selector' => '{{WRAPPER}} .banner-title u', 'condition' => array( 'title_decoration_style' => 'default', ), ) ); $this->add_responsive_control( 'title_decoration_padding', array( 'label' => esc_html__( 'Padding', 'woodmart' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => array( 'px', '%', 'em', 'rem' ), 'selectors' => array( '{{WRAPPER}} .banner-title u' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ), 'condition' => array( 'title_decoration_style' => 'default', ), ) ); $this->end_controls_section(); /** * Subtitle settings. */ $this->start_controls_section( 'subtitle_style_section', array( 'label' => esc_html__( 'Subtitle', 'woodmart' ), 'tab' => Controls_Manager::TAB_STYLE, ) ); $this->add_control( 'subtitle_style', array( 'label' => esc_html__( 'Subtitle style', 'woodmart' ), 'type' => Controls_Manager::SELECT, 'options' => array( 'default' => esc_html__( 'Default', 'woodmart' ), 'background' => esc_html__( 'Background', 'woodmart' ), ), 'default' => 'default', ) ); $this->add_control( 'subtitle_color', array( 'label' => esc_html__( 'Predefined color', 'woodmart' ), 'type' => Controls_Manager::SELECT, 'options' => array( 'default' => esc_html__( 'Default', 'woodmart' ), 'primary' => esc_html__( 'Primary', 'woodmart' ), 'alt' => esc_html__( 'Alternative', 'woodmart' ), ), 'default' => 'default', ) ); $this->add_control( 'custom_subtitle_color', array( 'label' => esc_html__( 'Color', 'woodmart' ), 'type' => Controls_Manager::COLOR, 'selectors' => array( '{{WRAPPER}} .banner-subtitle' => 'color: {{VALUE}}', ), ) ); $this->add_control( 'custom_subtitle_bg_color', array( 'label' => esc_html__( 'Background color', 'woodmart' ), 'type' => Controls_Manager::COLOR, 'selectors' => array( '{{WRAPPER}} .banner-subtitle' => 'background-color: {{VALUE}}', ), 'condition' => array( 'subtitle_style' => array( 'background' ), ), ) ); $this->add_group_control( Group_Control_Typography::get_type(), array( 'name' => 'subtitle_typography', 'label' => esc_html__( 'Custom typography', 'woodmart' ), 'selector' => '{{WRAPPER}} .banner-subtitle', ) ); $this->end_controls_section(); /** * Content settings. */ $this->start_controls_section( 'content_style_section', array( 'label' => esc_html__( 'Content', 'woodmart' ), 'tab' => Controls_Manager::TAB_STYLE, ) ); $this->add_control( 'content_text_size', array( 'label' => esc_html__( 'Predefined size', 'woodmart' ), 'type' => Controls_Manager::SELECT, 'options' => array( 'default' => esc_html__( 'Default (14px)', 'woodmart' ), 'medium' => esc_html__( 'Medium (16px)', 'woodmart' ), 'large' => esc_html__( 'Large (18px)', 'woodmart' ), ), 'default' => 'default', ) ); $this->add_control( 'custom_text_color', array( 'label' => esc_html__( 'Color', 'woodmart' ), 'type' => Controls_Manager::COLOR, 'selectors' => array( '{{WRAPPER}} .banner-inner' => 'color: {{VALUE}}', ), ) ); $this->add_group_control( Group_Control_Typography::get_type(), array( 'name' => 'text_typography', 'label' => esc_html__( 'Custom typography', 'woodmart' ), 'selector' => '{{WRAPPER}} .banner-inner', ) ); $this->end_controls_section(); /** * Countdown settings. */ $this->start_controls_section( 'countdown_style_section', array( 'label' => esc_html__( 'Countdown', 'woodmart' ), 'tab' => Controls_Manager::TAB_STYLE, ) ); $this->add_control( 'countdown_style', array( 'label' => esc_html__( 'Background', 'woodmart' ), 'type' => Controls_Manager::SELECT, 'options' => array( 'simple' => esc_html__( 'Default', 'woodmart' ), 'active' => esc_html__( 'Primary color', 'woodmart' ), 'custom' => esc_html__( 'Custom', 'woodmart' ), ), 'default' => 'simple', ) ); $this->add_control( 'countdown_bg_color', array( 'label' => esc_html__( 'Background color', 'woodmart' ), 'type' => Controls_Manager::COLOR, 'selectors' => array( '{{WRAPPER}} .wd-timer' => '--wd-timer-bg: {{VALUE}}', ), 'condition' => array( 'countdown_style' => 'custom', ), ) ); $this->add_control( 'countdown_color_scheme', array( 'label' => esc_html__( 'Color Scheme', 'woodmart' ), 'type' => Controls_Manager::SELECT, 'options' => array( '' => esc_html__( 'Inherit', 'woodmart' ), 'light' => esc_html__( 'Light', 'woodmart' ), 'dark' => esc_html__( 'Dark', 'woodmart' ), ), 'default' => '', ) ); $this->add_group_control( Group_Control_Box_Shadow::get_type(), array( 'name' => 'countdown_shadow', 'selector' => '{{WRAPPER}} .wd-item', ) ); $this->add_control( 'countdown_size', array( 'label' => esc_html__( 'Predefined size', 'woodmart' ), 'type' => Controls_Manager::SELECT, 'options' => array( 'small' => esc_html__( 'Small (20px)', 'woodmart' ), 'medium' => esc_html__( 'Medium (24px)', 'woodmart' ), 'large' => esc_html__( 'Large (28px)', 'woodmart' ), 'xlarge' => esc_html__( 'Extra Large (42px)', 'woodmart' ), ), 'default' => 'medium', ) ); $this->end_controls_section(); /** * Button settings. */ $this->start_controls_section( 'button_style_section', array( 'label' => esc_html__( 'Button', 'woodmart' ), 'tab' => Controls_Manager::TAB_STYLE, ) ); $this->add_control( 'btn_position', array( 'label' => esc_html__( 'Button position', 'woodmart' ), 'type' => Controls_Manager::SELECT, 'options' => array( 'hover' => esc_html__( 'Show on hover', 'woodmart' ), 'static' => esc_html__( 'Static', 'woodmart' ), ), 'default' => 'hover', 'condition' => array( 'style!' => 'content-background', ), ) ); $this->add_control( 'btn_style', array( 'label' => esc_html__( 'Style', 'woodmart' ), 'type' => Controls_Manager::SELECT, 'options' => array( 'default' => esc_html__( 'Flat', 'woodmart' ), 'bordered' => esc_html__( 'Bordered', 'woodmart' ), 'link' => esc_html__( 'Link button', 'woodmart' ), '3d' => esc_html__( '3D', 'woodmart' ), ), 'default' => 'default', ) ); $this->add_control( 'btn_color', array( 'label' => esc_html__( 'Predefined color', 'woodmart' ), 'type' => Controls_Manager::SELECT, 'options' => array( 'default' => esc_html__( 'Default', 'woodmart' ), 'primary' => esc_html__( 'Primary', 'woodmart' ), 'alt' => esc_html__( 'Alternative', 'woodmart' ), 'black' => esc_html__( 'Black', 'woodmart' ), 'white' => esc_html__( 'White', 'woodmart' ), 'custom' => esc_html__( 'Custom', 'woodmart' ), ), 'default' => 'default', ) ); $this->start_controls_tabs( 'btn_tabs_style', array( 'condition' => array( 'btn_color' => array( 'custom' ), ), ) ); $this->start_controls_tab( 'btn_tab_normal', array( 'label' => esc_html__( 'Normal', 'woodmart' ), ) ); $this->add_control( 'btn_bg_color', array( 'label' => esc_html__( 'Background color', 'woodmart' ), 'type' => Controls_Manager::COLOR, 'selectors' => array( '{{WRAPPER}} .wd-button-wrapper a' => 'background-color: {{VALUE}}; border-color: {{VALUE}};', ), ) ); $this->add_control( 'btn_color_scheme', array( 'label' => esc_html__( 'Text color scheme', 'woodmart' ), 'type' => Controls_Manager::SELECT, 'options' => array( 'inherit' => esc_html__( 'Inherit', 'woodmart' ), 'dark' => esc_html__( 'Dark', 'woodmart' ), 'light' => esc_html__( 'Light', 'woodmart' ), 'custom' => esc_html__( 'Custom', 'woodmart' ), ), 'default' => 'inherit', ) ); $this->add_control( 'btn_custom_color_scheme', array( 'label' => esc_html__( 'Custom text color', 'woodmart' ), 'type' => Controls_Manager::COLOR, 'selectors' => array( '{{WRAPPER}} .wd-button-wrapper a' => 'color: {{VALUE}};', ), 'condition' => array( 'btn_color_scheme' => 'custom', ), ) ); $this->end_controls_tab(); $this->start_controls_tab( 'btn_tab_hover', array( 'label' => esc_html__( 'Hover', 'woodmart' ), ) ); $this->add_control( 'btn_bg_color_hover', array( 'label' => esc_html__( 'Background color hover', 'woodmart' ), 'type' => Controls_Manager::COLOR, 'selectors' => array( '{{WRAPPER}} .wd-button-wrapper:hover a' => 'background-color: {{VALUE}}; border-color: {{VALUE}};', ), ) ); $this->add_control( 'btn_color_scheme_hover', array( 'label' => esc_html__( 'Text color scheme on hover', 'woodmart' ), 'type' => Controls_Manager::SELECT, 'options' => array( 'inherit' => esc_html__( 'Inherit', 'woodmart' ), 'dark' => esc_html__( 'Dark', 'woodmart' ), 'light' => esc_html__( 'Light', 'woodmart' ), 'custom' => esc_html__( 'Custom', 'woodmart' ), ), 'default' => 'inherit', ) ); $this->add_control( 'btn_custom_color_scheme_hover', array( 'label' => esc_html__( 'Custom text color on hover', 'woodmart' ), 'type' => Controls_Manager::COLOR, 'selectors' => array( '{{WRAPPER}} .wd-button-wrapper:hover a' => 'color: {{VALUE}};', ), 'condition' => array( 'btn_color_scheme_hover' => 'custom', ), ) ); $this->end_controls_tab(); $this->end_controls_tabs(); $this->add_control( 'btn_size', array( 'label' => esc_html__( 'Predefined size', 'woodmart' ), 'type' => Controls_Manager::SELECT, 'options' => array( 'default' => esc_html__( 'Default', 'woodmart' ), 'extra-small' => esc_html__( 'Extra Small', 'woodmart' ), 'small' => esc_html__( 'Small', 'woodmart' ), 'large' => esc_html__( 'Large', 'woodmart' ), 'extra-large' => esc_html__( 'Extra Large', 'woodmart' ), ), 'default' => 'default', ) ); $this->add_control( 'btn_shape', array( 'label' => esc_html__( 'Shape', 'woodmart' ), 'type' => Controls_Manager::SELECT, 'options' => array( 'rectangle' => esc_html__( 'Rectangle', 'woodmart' ), 'round' => esc_html__( 'Round', 'woodmart' ), 'semi-round' => esc_html__( 'Rounded', 'woodmart' ), ), 'condition' => array( 'btn_style!' => array( 'link' ), ), 'default' => 'rectangle', ) ); $this->add_control( 'button_icon_heading', array( 'label' => esc_html__( 'Icon', 'woodmart' ), 'type' => Controls_Manager::HEADING, 'separator' => 'before', ) ); woodmart_get_button_style_icon_map( $this, 'btn_' ); $this->add_control( 'button_layout_heading', array( 'label' => esc_html__( 'Layout', 'woodmart' ), 'type' => Controls_Manager::HEADING, 'separator' => 'before', ) ); $this->add_control( 'full_width', array( 'label' => esc_html__( 'Full width', 'woodmart' ), 'type' => Controls_Manager::SWITCHER, 'default' => 'no', 'label_on' => esc_html__( 'Yes', 'woodmart' ), 'label_off' => esc_html__( 'No', 'woodmart' ), 'return_value' => 'yes', ) ); $this->add_control( 'button_hr', array( 'type' => Controls_Manager::DIVIDER, 'style' => 'thick', ) ); $this->add_control( 'hide_btn_tablet', array( 'label' => esc_html__( 'Hide button on tablet', 'woodmart' ), 'type' => Controls_Manager::SWITCHER, 'default' => 'no', 'label_on' => esc_html__( 'Yes', 'woodmart' ), 'label_off' => esc_html__( 'No', 'woodmart' ), 'return_value' => 'yes', ) ); $this->add_control( 'hide_btn_mobile', array( 'label' => esc_html__( 'Hide button on mobile', 'woodmart' ), 'type' => Controls_Manager::SWITCHER, 'default' => 'no', 'label_on' => esc_html__( 'Yes', 'woodmart' ), 'label_off' => esc_html__( 'No', 'woodmart' ), 'return_value' => 'yes', ) ); $this->end_controls_section(); /** * Layout settings. */ $this->start_controls_section( 'layout_style_section', array( 'label' => esc_html__( 'Layout', 'woodmart' ), 'tab' => Controls_Manager::TAB_STYLE, ) ); $this->add_control( 'horizontal_alignment', array( 'label' => esc_html__( 'Content horizontal alignment', 'woodmart' ), 'type' => 'wd_buttons', 'options' => array( 'left' => array( 'title' => esc_html__( 'Left', 'woodmart' ), 'image' => WOODMART_ASSETS_IMAGES . '/settings/content-align/horizontal/left.png', ), 'center' => array( 'title' => esc_html__( 'Center', 'woodmart' ), 'image' => WOODMART_ASSETS_IMAGES . '/settings/content-align/horizontal/center.png', ), 'right' => array( 'title' => esc_html__( 'Right', 'woodmart' ), 'image' => WOODMART_ASSETS_IMAGES . '/settings/content-align/horizontal/right.png', ), ), 'default' => 'left', ) ); $this->add_control( 'vertical_alignment', array( 'label' => esc_html__( 'Content vertical alignment', 'woodmart' ), 'type' => 'wd_buttons', 'options' => array( 'top' => array( 'title' => esc_html__( 'Top', 'woodmart' ), 'image' => WOODMART_ASSETS_IMAGES . '/settings/content-align/vertical/top.png', ), 'middle' => array( 'title' => esc_html__( 'Middle', 'woodmart' ), 'image' => WOODMART_ASSETS_IMAGES . '/settings/content-align/vertical/middle.png', ), 'bottom' => array( 'title' => esc_html__( 'Bottom', 'woodmart' ), 'image' => WOODMART_ASSETS_IMAGES . '/settings/content-align/vertical/bottom.png', ), ), 'default' => 'top', ) ); $this->add_control( 'text_alignment', array( 'label' => esc_html__( 'Text alignment', 'woodmart' ), 'type' => 'wd_buttons', 'options' => array( 'left' => array( 'title' => esc_html__( 'Left', 'woodmart' ), 'image' => WOODMART_ASSETS_IMAGES . '/settings/align/left.jpg', ), 'center' => array( 'title' => esc_html__( 'Center', 'woodmart' ), 'image' => WOODMART_ASSETS_IMAGES . '/settings/align/center.jpg', ), 'right' => array( 'title' => esc_html__( 'Right', 'woodmart' ), 'image' => WOODMART_ASSETS_IMAGES . '/settings/align/right.jpg', ), ), 'default' => 'left', ) ); $this->add_responsive_control( 'width', array( 'label' => esc_html__( 'Width', 'woodmart' ), 'type' => Controls_Manager::SLIDER, 'default' => array( 'unit' => '%', ), 'tablet_default' => array( 'unit' => '%', ), 'mobile_default' => array( 'unit' => '%', ), 'size_units' => array( '%', 'px' ), 'range' => array( '%' => array( 'min' => 1, 'max' => 100, ), 'px' => array( 'min' => 1, 'max' => 1000, ), ), 'selectors' => array( '{{WRAPPER}} .promo-banner:not(.banner-content-background) .content-banner, {{WRAPPER}} .promo-banner.banner-content-background .wrapper-content-banner' => 'max-width: {{SIZE}}{{UNIT}};', ), ) ); $this->add_responsive_control( 'content_height', array( 'label' => esc_html__( 'Height', 'woodmart' ), 'type' => Controls_Manager::SLIDER, 'default' => array( 'unit' => '%', ), 'tablet_default' => array( 'unit' => '%', ), 'mobile_default' => array( 'unit' => '%', ), 'size_units' => array( '%', 'px' ), 'range' => array( '%' => array( 'min' => 1, 'max' => 100, ), 'px' => array( 'min' => 1, 'max' => 1000, ), ), 'selectors' => array( '{{WRAPPER}} .promo-banner:not(.banner-content-background) .content-banner, {{WRAPPER}} .promo-banner.banner-content-background .wrapper-content-banner' => 'min-height: {{SIZE}}{{UNIT}};', ), 'condition' => array( 'style' => 'content-background', ), ) ); $this->add_control( 'increase_spaces', array( 'label' => esc_html__( 'Increase spaces', 'woodmart' ), 'description' => esc_html__( 'Suggest to use this option if you have large banners. Padding will be set in percentage to your screen width.', 'woodmart' ), 'type' => Controls_Manager::SWITCHER, 'default' => 'no', 'label_on' => esc_html__( 'Yes', 'woodmart' ), 'label_off' => esc_html__( 'No', 'woodmart' ), 'return_value' => 'yes', ) ); $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() { woodmart_elementor_banner_template( $this->get_settings_for_display(), $this ); } } Plugin::instance()->widgets_manager->register( new Banner() );
[-] banner.php
[edit]
[+]
..
[-] class-banner-carousel.php
[edit]
[-] class-banner.php
[edit]