Current File : /home/kelaby89/topflowroofingplumbing.com.au/wp-content/plugins/homlane-plugin/elementor/banner.php |
<?php namespace HOMLANEPLUGIN\Element;
use Elementor\Controls_Manager;
use Elementor\Controls_Stack;
use Elementor\Group_Control_Typography;
use Elementor\Scheme_Typography;
use Elementor\Scheme_Color;
use Elementor\Group_Control_Border;
use Elementor\Repeater;
use Elementor\Widget_Base;
use Elementor\Utils;
use Elementor\Group_Control_Text_Shadow;
use Elementor\Plugin;
/**
* Elementor button widget.
* Elementor widget that displays a button with the ability to control every
* aspect of the button design.
*
* @since 1.0.0
*/
class Banner extends Widget_Base {
/**
* Get widget name.
* Retrieve button widget name.
*
* @since 1.0.0
* @access public
* @return string Widget name.
*/
public function get_name() {
return 'homlane_banner';
}
/**
* Get widget title.
* Retrieve button widget title.
*
* @since 1.0.0
* @access public
* @return string Widget title.
*/
public function get_title() {
return esc_html__( 'Banner', 'homlane' );
}
/**
* Get widget icon.
* Retrieve button widget icon.
*
* @since 1.0.0
* @access public
* @return string Widget icon.
*/
public function get_icon() {
return 'fa fa-briefcase';
}
/**
* Get widget categories.
* Retrieve the list of categories the button widget belongs to.
* Used to determine where to display the widget in the editor.
*
* @since 2.0.0
* @access public
* @return array Widget categories.
*/
public function get_categories() {
return [ 'homlane' ];
}
/**
* Register button widget controls.
* Adds different input fields to allow the user to change and customize the widget settings.
*
* @since 1.0.0
* @access protected
*/
protected function _register_controls() {
$this->start_controls_section(
'banner',
[
'label' => esc_html__( 'Banner', 'homlane' ),
]
);
$this->add_control(
'bg_image',
[
'label' => __( 'Backgruond Image', 'homlane' ),
'type' => Controls_Manager::MEDIA,
'default' => ['url' => Utils::get_placeholder_image_src(),],
]
);
$this->add_control(
'subtitle',
[
'label' => __( 'Sub Title', 'homlane' ),
'type' => Controls_Manager::TEXT,
'label_block' => true,
'dynamic' => [
'active' => true,
],
]
);
$this->add_control(
'title',
[
'label' => __( 'Title', 'homlane' ),
'type' => Controls_Manager::TEXT,
'label_block' => true,
'dynamic' => [
'active' => true,
],
]
);
$this->add_control(
'features',
[
'label' => __( 'Features', 'homlane' ),
'type' => Controls_Manager::TEXTAREA,
'dynamic' => [
'active' => true,
],
]
);
$this->add_control(
'btn_title',
[
'label' => __( 'Button Title', 'homlane' ),
'type' => Controls_Manager::TEXT,
'label_block' => true,
'dynamic' => [
'active' => true,
],
]
);
$this->add_control(
'btn_link',
[
'label' => __( 'Button URL', 'homlane' ),
'type' => Controls_Manager::URL,
'placeholder' => __( 'https://your-link.com', 'homlane' ),
'show_external' => true,
'default' => [
'url' => '',
'is_external' => true,
'nofollow' => true,
],
]
);
$this->add_control(
'image',
[
'label' => __( 'Image', 'homlane' ),
'type' => Controls_Manager::MEDIA,
'default' => ['url' => Utils::get_placeholder_image_src(),],
]
);
$this->add_control(
'guarantee_image',
[
'label' => __( 'Guarantee Image', 'homlane' ),
'type' => Controls_Manager::MEDIA,
'default' => ['url' => Utils::get_placeholder_image_src(),],
]
);
$this->end_controls_section();
//Form
$this->start_controls_section(
'form_tab',
[
'label' => esc_html__( 'Get Quote', 'homlane' ),
]
);
$this->add_control(
'quote_title',
[
'label' => __( 'Quote Title', 'homlane' ),
'type' => Controls_Manager::TEXTAREA,
'dynamic' => [
'active' => true,
],
]
);
$this->add_control(
'cf7_shortocde',
[
'label' => esc_html__('Select Contact Form 7', 'homlane'),
'type' => Controls_Manager::SELECT,
'label_block' => true,
'options' => get_contact_form_7_list(),
]
);
$this->end_controls_section();
}
/**
* Render button widget output on the frontend.
* Written in PHP and used to generate the final HTML.
*
* @since 1.0.0
* @access protected
*/
protected function render() {
$settings = $this->get_settings_for_display();
$allowed_tags = wp_kses_allowed_html('post'); ?>
<!--Start Banner Area-->
<section class="banner-area" style="background-image: url(<?php echo esc_url(wp_get_attachment_url($settings['bg_image']['id'])); ?>)">
<div class="container">
<div class="row">
<div class="col-xl-12">
<div class="banner-content-box">
<div class="row">
<div class="col-xl-5 col-lg-6 col-md-6">
<div class="banner-left-content">
<div class="satisfaction-logo wow slideInUp" data-wow-delay="100ms" data-wow-duration="2500ms">
<img src="<?php echo esc_url(wp_get_attachment_url($settings['guarantee_image']['id'])); ?>" alt="<?php esc_html_e('Awesome Image', 'homlane'); ?>">
</div>
<h2 class="wow fadeInUp" data-wow-delay="100ms" data-wow-duration="1500ms"><?php echo wp_kses( $settings['subtitle'], true ); ?></h2>
<h3 class="wow fadeInUp" data-wow-delay="200ms" data-wow-duration="1500ms"><?php echo wp_kses( $settings['title'], true ); ?></h3>
<?php $features_list = $settings['features'];
if(!empty($features_list)){
$features_list = explode("\n", ($features_list)); ?>
<ul class="wow fadeInUp" data-wow-delay="300ms" data-wow-duration="1500ms">
<?php foreach($features_list as $features): ?>
<li><?php echo wp_kses($features, true); ?></li>
<?php endforeach; ?>
</ul>
<?php } ?>
<?php if($settings['btn_link']['url'] and $settings['btn_title']) { ?>
<div class="button wow fadeInUp" data-wow-delay="400ms" data-wow-duration="1500ms">
<a class="btn-one gradient-bg-1" href="<?php echo esc_url( $settings['btn_link']['url'] ); ?>"><span class="txt"><?php echo wp_kses( $settings['btn_title'], true ); ?></span></a>
</div>
<?php } ?>
</div>
</div>
<div class="col-xl-4 col-lg-6 col-md-6">
<div class="banner-middle-content">
<div class="img-box clearfix wow slideInRight" data-wow-delay="200ms" data-wow-duration="1500ms">
<img src="<?php echo esc_url(wp_get_attachment_url($settings['image']['id'])); ?>" alt="<?php esc_html_e('Awesome Image', 'homlane'); ?>">
</div>
</div>
</div>
<div class="col-xl-3">
<div class="banner-right-content clearfix wow slideInRight" data-wow-delay="300ms" data-wow-duration="2000ms">
<div class="quote-form">
<div class="title-box">
<h4><?php echo wp_kses( $settings['quote_title'], true ); ?></h4>
</div>
<?php if($settings['cf7_shortocde']){ ?>
<div class="form-box">
<?php echo do_shortcode('[contact-form-7 id="'.esc_attr($settings['cf7_shortocde']).'"]'); ?>
</div>
<?php } ?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--End Banner Area-->
<?php
}
}