B4BY.588
Home
Terminal
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
bhingree
/
public_html
/
wp-content
/
plugins
/
conat-plugin
/
elementor
/
Filename :
slider_v2.php
back
Copy
<?php namespace CONATPLUGIN\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 Slider_V2 extends Widget_Base { /** * Get widget name. * Retrieve button widget name. * * @since 2.0.0 * @access public * @return string Widget name. */ public function get_name() { return 'conat_slider_v2'; } /** * Get widget title. * Retrieve button widget title. * * @since 2.0.0 * @access public * @return string Widget title. */ public function get_title() { return esc_html__( 'Conat Slider V2', 'conat' ); } /** * Get widget icon. * Retrieve button widget icon. * * @since 2.0.0 * @access public * @return string Widget icon. */ public function get_icon() { return 'eicon-slider-device'; } /** * 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 [ 'conat' ]; } /** * Register button widget controls. * Adds different input fields to allow the user to change and customize the widget settings. * * @since 2.0.0 * @access protected */ protected function _register_controls() { $this->start_controls_section( 'date_tab', [ 'label' => esc_html__( 'Coming Date', 'conat' ), ] ); $this->add_control( 'date', [ 'label' => __( 'Date', 'conat' ), 'type' => Controls_Manager::DATE_TIME, ] ); $this->end_controls_section(); //Slider $this->start_controls_section( 'slider_tab', [ 'label' => esc_html__( 'Slider', 'conat' ), ] ); $this->add_control( 'slides', [ 'type' => Controls_Manager::REPEATER, 'fields' => [ [ 'name' => 'bg_image', 'label' => esc_html__('Background Image', 'conat'), 'type' => Controls_Manager::MEDIA, 'default' => ['url' => Utils::get_placeholder_image_src(),], ], [ 'name' => 'cloud_pattern', 'label' => esc_html__('Cloud Image', 'conat'), 'type' => Controls_Manager::MEDIA, 'default' => ['url' => Utils::get_placeholder_image_src(),], ], [ 'name' => 'image', 'label' => esc_html__('Image', 'conat'), 'type' => Controls_Manager::MEDIA, 'default' => ['url' => Utils::get_placeholder_image_src(),], ], [ 'name' => 'date', 'label' => esc_html__('Title', 'conat'), 'type' => Controls_Manager::DATE_TIME, ], [ 'name' => 'title', 'label' => esc_html__('Title', 'conat'), 'type' => Controls_Manager::TEXTAREA, ], [ 'name' => 'address', 'label' => esc_html__('Address', 'conat'), 'type' => Controls_Manager::TEXT, 'label_block' => true, ], [ 'name' => 'btn_style', 'label' => esc_html__('Button Style', 'conat'), 'type' => Controls_Manager::SELECT2, 'default' => 'one', 'options' => conat_button_style(), ], [ 'name' => 'btn_name', 'label' => esc_html__('Button Name', 'conat'), 'type' => Controls_Manager::TEXT, ], [ 'name' => 'btn_link', 'label' => esc_html__('Button Link', 'conat'), 'type' => Controls_Manager::URL, 'placeholder' => __( 'https://your-link.com/', 'conat' ), 'show_external' => true, 'dynamic' => [ 'active' => true, ], 'default' => [ 'url' => '#', ], ], ], ] ); $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'); ?> <!-- Slider One --> <section class="slider-two"> <div class="main-slider-carousel owl-carousel owl-theme"> <?php foreach($settings['slides'] as $key => $item): ?> <!-- Slide 01 --> <div class="slider-two_slide"> <div class="slider-two_icon-one" style="background-image:url(<?php echo esc_url(get_template_directory_uri().'/assets/images/main-slider/pattern-3.png'); ?>)"></div> <div class="slider-two_icon-two" style="background-image:url(<?php echo esc_url(get_template_directory_uri().'/assets/images/main-slider/pattern-4.png'); ?>)"></div> <div class="slider-two_icon-three" style="background-image:url(<?php echo esc_url(get_template_directory_uri().'/assets/images/main-slider/pattern-5.png'); ?>)"></div> <?php if($item['cloud_pattern']['id']) { ?><div class="slider-two_cloud-layer" style="background-image:url(<?php echo esc_url(wp_get_attachment_url($item['cloud_pattern']['id'])); ?>)"></div><?php } ?> <?php if($item['bg_image']['id']) { ?><div class="slider-two_image-layer" style="background-image:url(<?php echo esc_url(wp_get_attachment_url($item['bg_image']['id'])); ?>)"></div><?php } ?> <div class="auto-container"> <div class="row clearfix"> <div class="slider-two_image-column col-lg-6 col-md-12 col-sm-12"> <?php if($item['image']['id']) { ?> <div class="slider-two_image"> <img src="<?php echo esc_url(wp_get_attachment_url($item['image']['id'])); ?>" alt="<?php esc_attr_e('Awesome Image', 'conat'); ?>" /> </div> <?php } ?> </div> <!-- Content Column --> <div class="slider-two_content col-lg-6 col-md-12 col-sm-12"> <div class="slider-two_content-inner"> <?php if ($item['date']){ ?><div class="slider-two_date"><?php echo esc_attr(date("F d, Y", strtotime($item['date']))); ?></div><?php } ?> <h2 class="slider-two_heading"><?php echo wp_kses($item['title'], true); ?></h2> <?php if ($item['address']){ ?><div class="slider-two_location"><?php echo wp_kses($item['address'], true); ?></div><?php } ?> <div class="slider-two_button"> <?php if($item['btn_link']['url'] and $item['btn_name']) { echo conat_button($item['btn_style'], $item['btn_name'], $item['btn_link']['url']); } ?> </div> </div> </div> </div> </div> </div> <!-- End Slide 01 --> <?php endforeach; ?> </div> <?php if ($settings['date']){ ?> <!-- Time Countdown --> <div class="slider-two_timer"> <div class="time-countdown clearfix" data-countdown="<?php echo esc_attr(date("Y/m/d", strtotime($settings['date']))); ?>"></div> </div> <?php } ?> </section> <!-- End Main Slider Section --> <?php } }