Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
pokeloken
/
admin
/
wp-content
/
plugins
/
bdevs-element
/
widgets
/
subscribe
:
subscribe-widget.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace BdevsElement\Widget; use \Elementor\Group_Control_Background; use \Elementor\Repeater; use \Elementor\Controls_Manager; use \Elementor\Group_Control_Border; use \Elementor\Group_Control_Image_Size; use \Elementor\Group_Control_Typography; Use \Elementor\Core\Schemes\Typography; use \Elementor\Utils; defined( 'ABSPATH' ) || die(); class Subscribe extends BDevs_El_Widget { /** * Get widget name. * * Retrieve Bdevs Element widget name. * * @since 1.0.0 * @access public * * @return string Widget name. */ public function get_name() { return 'subscribe'; } /** * Get widget title. * * @since 1.0.0 * @access public * * @return string Widget title. */ public function get_title() { return __( 'Subscribe', 'bdevselement' ); } public function get_custom_help_url() { return 'http://elementor.bdevs.net//widgets/fact/'; } /** * Get widget icon. * * @since 1.0.0 * @access public * * @return string Widget icon. */ public function get_icon() { return 'eicon-mailchimp'; } public function get_keywords() { return [ 'subscribe', 'image', 'list' ]; } protected function register_content_controls() { $this->start_controls_section( '_section_title', [ 'label' => __( 'Title & Description', 'bdevselement' ), 'tab' => Controls_Manager::TAB_CONTENT, ] ); $this->add_control( 'title', [ 'label' => __( 'Title', 'bdevselement' ), 'label_block' => true, 'type' => Controls_Manager::TEXTAREA, 'default' => __( 'bdevs Info Box Title', 'bdevselement' ), 'placeholder' => __( 'Type Info Box Title', 'bdevselement' ), 'dynamic' => [ 'active' => true, ] ] ); $this->add_control( 'big_title', [ 'label' => __( 'Big Title', 'bdevselement' ), 'label_block' => true, 'description' => bdevs_element_get_allowed_html_desc( 'intermediate' ), 'type' => Controls_Manager::TEXT, 'default' => __( 'title here', 'bdevselement' ), 'placeholder' => __( 'Type big title here', 'bdevselement' ), 'dynamic' => [ 'active' => true, ] ] ); $this->add_control( 'subtitle', [ 'label' => __( 'Subtitle', 'bdevselement' ), 'label_block' => true, 'description' => bdevs_element_get_allowed_html_desc( 'intermediate' ), 'type' => Controls_Manager::TEXT, 'default' => __( 'bdevs subtitle here', 'bdevselement' ), 'placeholder' => __( 'Type subtitle here', 'bdevselement' ), 'dynamic' => [ 'active' => true, ] ] ); $this->add_control( 'desccription', [ 'label' => __( 'Desccription', 'bdevselement' ), 'type' => Controls_Manager::TEXTAREA, 'placeholder' => __( 'Heading Desccription Text', 'bdevselement' ), 'dynamic' => [ 'active' => true, ] ] ); $this->add_control( 'title_tag', [ 'label' => __( 'Title HTML Tag', 'bdevselement' ), 'type' => Controls_Manager::CHOOSE, 'options' => [ 'h1' => [ 'title' => __( 'H1', 'bdevselement' ), 'icon' => 'eicon-editor-h1' ], 'h2' => [ 'title' => __( 'H2', 'bdevselement' ), 'icon' => 'eicon-editor-h2' ], 'h3' => [ 'title' => __( 'H3', 'bdevselement' ), 'icon' => 'eicon-editor-h3' ], 'h4' => [ 'title' => __( 'H4', 'bdevselement' ), 'icon' => 'eicon-editor-h4' ], 'h5' => [ 'title' => __( 'H5', 'bdevselement' ), 'icon' => 'eicon-editor-h5' ], 'h6' => [ 'title' => __( 'H6', 'bdevselement' ), 'icon' => 'eicon-editor-h6' ] ], 'default' => 'h1', 'toggle' => false, ] ); $this->add_responsive_control( 'align', [ 'label' => __( 'Alignment', 'bdevselement' ), 'type' => Controls_Manager::CHOOSE, 'options' => [ 'left' => [ 'title' => __( 'Left', 'bdevselement' ), 'icon' => 'fa fa-align-left', ], 'center' => [ 'title' => __( 'Center', 'bdevselement' ), 'icon' => 'fa fa-align-center', ], 'right' => [ 'title' => __( 'Right', 'bdevselement' ), 'icon' => 'fa fa-align-right', ], ], 'toggle' => true, 'selectors' => [ '{{WRAPPER}}' => 'text-align: {{VALUE}};' ] ] ); $this->end_controls_section(); $this->start_controls_section( '_section_mailchimp_title', [ 'label' => __( 'Mailchimp', 'bdevselement' ), 'tab' => Controls_Manager::TAB_CONTENT, ] ); $this->add_control( 'mailchimp_shortcode', [ 'label' => __( 'Mailchimp Shortcode', 'bdevselement' ), 'type' => Controls_Manager::TEXT, 'label_block' => true, 'description' => __( 'Add Mailchimp Shortcode.', 'bdevselement' ), ] ); $this->end_controls_section(); } protected function register_style_controls() { $this->start_controls_section( '_section_style_item', [ 'label' => __( 'Slider Item', 'bdevselement' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'item_border', 'selector' => '{{WRAPPER}} .bdevs-slick-item', ] ); $this->add_responsive_control( 'item_border_radius', [ 'label' => __( 'Border Radius', 'bdevselement' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', '%' ], 'selectors' => [ '{{WRAPPER}} .bdevs-slick-item' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}; overflow: hidden;', ], ] ); $this->end_controls_section(); $this->start_controls_section( '_section_style_content', [ 'label' => __( 'Slide Content', 'bdevselement' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_responsive_control( 'content_padding', [ 'label' => __( 'Content Padding', 'bdevselement' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', 'em', '%' ], 'selectors' => [ '{{WRAPPER}} .bdevs-slick-content' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_group_control( Group_Control_Background::get_type(), [ 'name' => 'content_background', 'selector' => '{{WRAPPER}} .bdevs-slick-content', 'exclude' => [ 'image' ] ] ); $this->add_control( '_heading_title', [ 'type' => Controls_Manager::HEADING, 'label' => __( 'Title', 'bdevselement' ), 'separator' => 'before' ] ); $this->add_responsive_control( 'title_spacing', [ 'label' => __( 'Bottom Spacing', 'bdevselement' ), 'type' => Controls_Manager::SLIDER, 'size_units' => ['px'], 'selectors' => [ '{{WRAPPER}} .bdevs-slick-title' => 'margin-bottom: {{SIZE}}{{UNIT}};', ], ] ); $this->add_control( 'title_color', [ 'label' => __( 'Text Color', 'bdevselement' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdevs-slick-title' => 'color: {{VALUE}}', ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'title', 'selector' => '{{WRAPPER}} .bdevs-slick-title', 'scheme' => Typography::TYPOGRAPHY_2, ] ); $this->add_control( '_heading_subtitle', [ 'type' => Controls_Manager::HEADING, 'label' => __( 'Subtitle', 'bdevselement' ), 'separator' => 'before' ] ); $this->add_responsive_control( 'subtitle_spacing', [ 'label' => __( 'Bottom Spacing', 'bdevselement' ), 'type' => Controls_Manager::SLIDER, 'size_units' => ['px'], 'selectors' => [ '{{WRAPPER}} .bdevs-slick-subtitle' => 'margin-bottom: {{SIZE}}{{UNIT}};', ], ] ); $this->add_control( 'subtitle_color', [ 'label' => __( 'Text Color', 'bdevselement' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdevs-slick-subtitle' => 'color: {{VALUE}}', ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'subtitle', 'selector' => '{{WRAPPER}} .bdevs-slick-subtitle', 'scheme' => Typography::TYPOGRAPHY_3, ] ); $this->end_controls_section(); $this->start_controls_section( '_section_style_arrow', [ 'label' => __( 'Navigation - Arrow', 'bdevselement' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_control( 'arrow_position_toggle', [ 'label' => __( 'Position', 'bdevselement' ), 'type' => Controls_Manager::POPOVER_TOGGLE, 'label_off' => __( 'None', 'bdevselement' ), 'label_on' => __( 'Custom', 'bdevselement' ), 'return_value' => 'yes', ] ); $this->start_popover(); $this->add_responsive_control( 'arrow_position_y', [ 'label' => __( 'Vertical', 'bdevselement' ), 'type' => Controls_Manager::SLIDER, 'size_units' => ['px'], 'condition' => [ 'arrow_position_toggle' => 'yes' ], 'range' => [ 'px' => [ 'min' => 0, 'max' => 500, ], ], 'selectors' => [ '{{WRAPPER}} .slick-prev, {{WRAPPER}} .slick-next' => 'top: {{SIZE}}{{UNIT}};', ], ] ); $this->add_responsive_control( 'arrow_position_x', [ 'label' => __( 'Horizontal', 'bdevselement' ), 'type' => Controls_Manager::SLIDER, 'size_units' => ['px'], 'condition' => [ 'arrow_position_toggle' => 'yes' ], 'range' => [ 'px' => [ 'min' => -100, 'max' => 250, ], ], 'selectors' => [ '{{WRAPPER}} .slick-prev' => 'left: {{SIZE}}{{UNIT}};', '{{WRAPPER}} .slick-next' => 'right: {{SIZE}}{{UNIT}};', ], ] ); $this->end_popover(); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'arrow_border', 'selector' => '{{WRAPPER}} .slick-prev, {{WRAPPER}} .slick-next', ] ); $this->add_responsive_control( 'arrow_border_radius', [ 'label' => __( 'Border Radius', 'bdevselement' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', '%' ], 'selectors' => [ '{{WRAPPER}} .slick-prev, {{WRAPPER}} .slick-next' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}; overflow: hidden;', ], ] ); $this->start_controls_tabs( '_tabs_arrow' ); $this->start_controls_tab( '_tab_arrow_normal', [ 'label' => __( 'Normal', 'bdevselement' ), ] ); $this->add_control( 'arrow_color', [ 'label' => __( 'Text Color', 'bdevselement' ), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .slick-prev, {{WRAPPER}} .slick-next' => 'color: {{VALUE}};', ], ] ); $this->add_control( 'arrow_bg_color', [ 'label' => __( 'Background Color', 'bdevselement' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .slick-prev, {{WRAPPER}} .slick-next' => 'background-color: {{VALUE}};', ], ] ); $this->end_controls_tab(); $this->start_controls_tab( '_tab_arrow_hover', [ 'label' => __( 'Hover', 'bdevselement' ), ] ); $this->add_control( 'arrow_hover_color', [ 'label' => __( 'Text Color', 'bdevselement' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .slick-prev:hover, {{WRAPPER}} .slick-next:hover' => 'color: {{VALUE}};', ], ] ); $this->add_control( 'arrow_hover_bg_color', [ 'label' => __( 'Background Color', 'bdevselement' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .slick-prev:hover, {{WRAPPER}} .slick-next:hover' => 'background-color: {{VALUE}};', ], ] ); $this->add_control( 'arrow_hover_border_color', [ 'label' => __( 'Border Color', 'bdevselement' ), 'type' => Controls_Manager::COLOR, 'condition' => [ 'arrow_border_border!' => '', ], 'selectors' => [ '{{WRAPPER}} .slick-prev:hover, {{WRAPPER}} .slick-next:hover' => 'border-color: {{VALUE}};', ], ] ); $this->end_controls_tab(); $this->end_controls_tabs(); $this->end_controls_section(); $this->start_controls_section( '_section_style_dots', [ 'label' => __( 'Navigation - Dots', 'bdevselement' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_responsive_control( 'dots_nav_position_y', [ 'label' => __( 'Vertical Position', 'bdevselement' ), 'type' => Controls_Manager::SLIDER, 'size_units' => ['px'], 'range' => [ 'px' => [ 'min' => -100, 'max' => 500, ], ], 'selectors' => [ '{{WRAPPER}} .slick-dots' => 'bottom: {{SIZE}}{{UNIT}};', ], ] ); $this->add_responsive_control( 'dots_nav_spacing', [ 'label' => __( 'Spacing', 'bdevselement' ), 'type' => Controls_Manager::SLIDER, 'size_units' => ['px'], 'selectors' => [ '{{WRAPPER}} .slick-dots li' => 'margin-right: calc({{SIZE}}{{UNIT}} / 2); margin-left: calc({{SIZE}}{{UNIT}} / 2);', ], ] ); $this->add_responsive_control( 'dots_nav_align', [ 'label' => __( 'Alignment', 'bdevselement' ), 'type' => Controls_Manager::CHOOSE, 'label_block' => false, 'options' => [ 'left' => [ 'title' => __( 'Left', 'bdevselement' ), 'icon' => 'eicon-h-align-left', ], 'center' => [ 'title' => __( 'Center', 'bdevselement' ), 'icon' => 'eicon-h-align-center', ], 'right' => [ 'title' => __( 'Right', 'bdevselement' ), 'icon' => 'eicon-h-align-right', ], ], 'toggle' => true, 'selectors' => [ '{{WRAPPER}} .slick-dots' => 'text-align: {{VALUE}}' ] ] ); $this->start_controls_tabs( '_tabs_dots' ); $this->start_controls_tab( '_tab_dots_normal', [ 'label' => __( 'Normal', 'bdevselement' ), ] ); $this->add_control( 'dots_nav_color', [ 'label' => __( 'Color', 'bdevselement' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .slick-dots li button:before' => 'color: {{VALUE}};', ], ] ); $this->end_controls_tab(); $this->start_controls_tab( '_tab_dots_hover', [ 'label' => __( 'Hover', 'bdevselement' ), ] ); $this->add_control( 'dots_nav_hover_color', [ 'label' => __( 'Color', 'bdevselement' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .slick-dots li button:hover:before' => 'color: {{VALUE}};', ], ] ); $this->end_controls_tab(); $this->start_controls_tab( '_tab_dots_active', [ 'label' => __( 'Active', 'bdevselement' ), ] ); $this->add_control( 'dots_nav_active_color', [ 'label' => __( 'Color', 'bdevselement' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .slick-dots .slick-active button:before' => 'color: {{VALUE}};', ], ] ); $this->end_controls_tab(); $this->end_controls_tabs(); $this->end_controls_section(); } protected function render() { $settings = $this->get_settings_for_display(); $this->add_inline_editing_attributes( 'title', 'basic' ); $this->add_render_attribute( 'title', 'class', 'big_title mb-0 text-white' ); $this->add_inline_editing_attributes( 'description', 'intermediate' ); $this->add_render_attribute( 'subtitle', 'class', 'bdevs-infobox-text' ); ?> <section class="newsletter_section clearfix m-0"> <div class="container"> <div class="newsletter_boxed bg_default_blue wow fadeInUp22 clearfix" data-wow-delay=".1s"> <div class="row align-items-center justify-content-lg-between justify-content-md-center justify-content-sm-center"> <?php $mailchimp_class = 'col-lg-12 col-md-12 col-sm-12 col-xs-12'; if ( !empty($settings['title']) ): $mailchimp_class = 'col-lg-7 col-md-9 col-sm-10 col-xs-12'; ?> <div class="col-lg-5 col-md-6 col-sm-8 col-xs-12 text-white"> <div class="section_title"> <?php if ( $settings['subtitle'] ) : ?> <h4 class="small_title"><?php echo bdevs_element_kses_intermediate( $settings['subtitle'] ); ?></h4> <?php endif; ?> <?php printf( '<%1$s %2$s>%3$s</%1$s>', tag_escape( $settings['title_tag'] ), $this->get_render_attribute_string( 'title' ), bdevs_element_kses_basic( $settings['title' ] ) ); ?> <?php if ( $settings['big_title'] ) : ?> <span class="biggest_title"><?php echo bdevs_element_kses_basic( $settings['big_title'] ); ?></span> <?php endif; ?> <?php if ( $settings['desccription'] ) : ?> <p><?php echo bdevs_element_kses_intermediate( $settings['desccription'] ); ?></p> <?php endif; ?> </div> </div> <?php endif; ?> <div class="<?php echo esc_attr($mailchimp_class); ?>"> <?php if ( $settings['mailchimp_shortcode'] ) : ?> <div class="newsletter_form"> <?php print do_shortcode($settings['mailchimp_shortcode']); ?> </div> <?php endif; ?> </div> </div> </div> </div> </section> <?php } }