File: /mnt/data/truelysell-wp-demo/wp-content/plugins/truelysell-elementor/widgets/class-hero4.php
<?php
/**
* Awesomesauce class.
*
* @category Class
* @package ElementorAwesomesauce
* @subpackage WordPress
* @author Ben Marshall <[email protected]>
* @copyright 2020 Ben Marshall
* @license https://opensource.org/licenses/GPL-3.0 GPL-3.0-only
* @link link(https://www.benmarshall.me/build-custom-elementor-widgets/,
* Build Custom Elementor Widgets)
* @since 1.0.0
* php version 7.3.9
*/
namespace ElementorTruelysell\Widgets;
use Elementor\Widget_Base;
use Elementor\Controls_Manager;
use Elementor\Utils;
use Elementor\Scheme_Color;
use Elementor\Group_Control_Typography;
if ( ! defined( 'ABSPATH' ) ) {
// Exit if accessed directly.
exit;
}
/**
* Awesomesauce widget class.
*
* @since 1.0.0
*/
class Truelysell_HomeHero4 extends Widget_Base {
/**
* Retrieve the widget name.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget name.
*/
public function get_name() {
return 'truelysell-hero4';
}
/**
* Retrieve the widget title.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget title.
*/
public function get_title() {
return __( 'Truelysell Hero 4', 'truelysell_elementor' );
}
/**
* Retrieve the widget icon.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget icon.
*/
public function get_icon() {
return 'eicon-slides';
}
/**
* Retrieve the list of categories the widget belongs to.
*
* Used to determine where to display the widget in the editor.
*
* Note that currently Elementor supports only one category.
* When multiple categories passed, Elementor uses the first one.
*
* @since 1.0.0
*
* @access public
*
* @return array Widget categories.
*/
public function get_categories() {
return array( 'truelysell' );
}
/**
* Register the 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(
'content_section',
[
'label' => __( 'Content', 'plugin-name' ),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
]
);
$this->add_control(
'title',
array(
'label' => __( 'Title', 'truelysell_elementor' ),
'type' => Controls_Manager::TEXT,
'default' => __( 'Reviews & Ratings of Best <span>Catering Service</span> Providers Near You', 'truelysell_elementor' ),
)
);
$this->add_control(
'subtitle',
array(
'label' => __( 'Sub-Title', 'truelysell_elementor' ),
'type' => Controls_Manager::TEXT,
'default' => __( 'Helped 10,000+ Customers to find the right caterers for their functions and events around the world.', 'truelysell_elementor' ),
)
);
$this->add_control(
'search_placeholder',
array(
'label' => __( 'Search Pleaceholder', 'truelysell_elementor' ),
'type' => Controls_Manager::TEXT,
'default' => __( 'What are you looking for?', 'truelysell_elementor' ),
)
);
$this->add_control(
'location_placeholder',
array(
'label' => __( 'Location Pleaceholder', 'truelysell_elementor' ),
'type' => Controls_Manager::TEXT,
'default' => __( 'United States', 'truelysell_elementor' ),
)
);
$this->add_control(
'search_url',
[
'label' => __( 'Search URL','truelysell_elementor' ),
'type' => \Elementor\Controls_Manager::URL,
'placeholder' => __( 'https://your-link.com', 'truelysell_elementor' ),
'show_external' => false,
'default' => [
'url' => 'https://truelysell-wp.dreamstechnologies.com/grid-with-sidebar/',
],
]
);
$this->add_control(
'bannerimage',
[
'label' => __( 'Banner Image', 'dreamslms_elementor' ),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [
'url' => \Elementor\Utils::get_placeholder_image_src(),
]
]
);
$this->end_controls_section();
// Style: Title
$this->start_controls_section(
'hero4_section_style_title',
[
'label' => __( 'Title', 'truelysell_elementor' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_control(
'hero4_title_color',
[
'label' => __( 'Text Color', 'truelysell_elementor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .slider-service .section-search-four h1' => 'color: {{VALUE}};',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'hero4_title_typography',
'selector' => '{{WRAPPER}} .slider-service .section-search-four h1',
]
);
$this->end_controls_section();
// Style: Subtitle
$this->start_controls_section(
'hero4_section_style_subtitle',
[
'label' => __( 'Subtitle', 'truelysell_elementor' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_control(
'hero4_subtitle_color',
[
'label' => __( 'Text Color', 'truelysell_elementor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .slider-service .section-search-four p' => 'color: {{VALUE}};',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'hero4_subtitle_typography',
'selector' => '{{WRAPPER}} .slider-service .section-search-four p',
]
);
$this->end_controls_section();
// Style: Search Form
$this->start_controls_section(
'hero4_section_style_form',
[
'label' => __( 'Search Form', 'truelysell_elementor' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_control(
'hero4_form_input_color',
[
'label' => __( 'Input Text Color', 'truelysell_elementor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .slider-service .search-box-four input.form-control' => 'color: {{VALUE}};',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'hero4_form_input_typography',
'selector' => '{{WRAPPER}} .slider-service .search-box-four input.form-control',
]
);
$this->end_controls_section();
// Style: Counter Boxes
$this->start_controls_section(
'hero4_section_style_counters',
[
'label' => __( 'Counters', 'truelysell_elementor' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_control(
'hero4_counter_count_color',
[
'label' => __( 'Count Color', 'truelysell_elementor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .catering-banner-botton .catering-btn-services h5' => 'color: {{VALUE}};',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'hero4_counter_count_typography',
'selector' => '{{WRAPPER}} .catering-banner-botton .catering-btn-services h5',
]
);
$this->add_control(
'hero4_counter_title_color',
[
'label' => __( 'Title Color', 'truelysell_elementor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .catering-banner-botton .catering-btn-services h6' => 'color: {{VALUE}};',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'hero4_counter_title_typography',
'selector' => '{{WRAPPER}} .catering-banner-botton .catering-btn-services h6',
]
);
$this->end_controls_section();
$this->start_controls_section(
'section_toggle',
[
'label' => esc_html__( 'Toggle', 'truelysell_elementor' ),
]
);
$repeater = new \Elementor\Repeater();
$repeater->add_control(
'tab_count',
[
'label' => __( 'Count', 'truelysell_elementor' ),
'type' => Controls_Manager::TEXT,
'default' => __( '3000+', 'truelysell_elementor' ),
]
);
$repeater->add_control(
'tab_title',
[
'label' => esc_html__( 'Title & Description', 'truelysell_elementor' ),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => esc_html__( 'Toggle Title', 'truelysell_elementor' ),
'label_block' => true,
]
);
$repeater->add_control(
'backgroundimage',
[
'label' => __( 'Left Image', 'truelysell_elementor' ),
'type' => \Elementor\Controls_Manager::MEDIA,
]
);
$this->add_control(
'tabs',
[
'label' => esc_html__( 'Toggle Items', 'truelysell_elementor' ),
'type' => \Elementor\Controls_Manager::REPEATER,
'fields' => $repeater->get_controls(),
'default' => [
[
'tab_count' => esc_html__( '3000+', 'truelysell_elementor' ),
'tab_title' => esc_html__( 'Services', 'truelysell_elementor' ),
],
[
'tab_count' => esc_html__( '900+', 'truelysell_elementor' ),
'tab_title' => esc_html__( 'Food Items', 'truelysell_elementor' ),
],
[
'tab_count' => esc_html__( '15k Review', 'truelysell_elementor' ),
'tab_title' => esc_html__( '(4.8)', 'truelysell_elementor' ),
]
],
'title_field' => '{{{ tab_title }}}',
]
);
$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() {
$settings = $this->get_settings_for_display();
$id_int = substr( $this->get_id_int(), 0, 3 );
$this->add_inline_editing_attributes( 'title', 'none' );
$this->add_inline_editing_attributes( 'subtitle', 'none' );
$search_url = $settings['search_url']['url'];
?>
<!-- Banner
================================================== -->
<div class="container-fluid">
<div class="home-banner slider-service">
<div class="row align-items-center w-100">
<div class="col-lg-7 col-md-10 mx-auto">
<div class="section-search section-search-four">
<h1><?php echo $settings['title']; ?></h1>
<p><?php echo $settings['subtitle']; ?></p>
<div class="search-box search-box-four">
<form action="<?php if(!empty( $search_url )) { echo $search_url; } else {?><?php echo esc_url( home_url() ); ?>/grid-with-sidebar<?php } ?>" id="truelysell_core-search-form" class=" main-search-form ajax-search" method="GET">
<div class="main-search-input-old">
<div class="search-input line ">
<i class="fas fa-tv bficon"></i>
<div class="form-group mb-0">
<input autocomplete="off" name="keyword_search" id="keyword_search" class="keyword_search1 form-control autocompletesearch" type="text" placeholder="<?php echo $settings['search_placeholder']; ?>" value="">
</div>
</div>
<div class="search-input ">
<i class="fas fa-location-arrow bficon"></i>
<div class="form-group mb-0">
<input autocomplete="off" name="location_search" id="location_search" type="text" placeholder="<?php echo $settings['location_placeholder']; ?>" value="" class="form-control">
</div>
</div>
<input type="hidden" name="action" value="truelysell_get_listings">
<div class="search-btn">
<button class="btn btn-primary search_service button" type="submit"><i class="feather-search me-2"></i></button>
</div>
</div>
<input type="hidden" name="_free_services_value" id="_free_services_value" value="0" disabled="disabled"></form>
<div id="search-results"></div>
</div>
<div class="catering-banner-botton">
<?php
foreach ( $settings['tabs'] as $index => $item ) :
$tab_count = $index + 1;
$tab_title_setting_key = $this->get_repeater_setting_key( 'tab_title', 'tabs', $index );
$tab_content_setting_key = $this->get_repeater_setting_key( 'tab_content', 'tabs', $index );
$this->add_render_attribute( $tab_title_setting_key, [
'id' => 'elementor-tab-title-' . $id_int . $tab_count,
'class' => [ 'elementor-tab-title' ],
'data-tab' => $tab_count,
'role' => 'tab',
'aria-controls' => 'elementor-tab-content-' . $id_int . $tab_count,
'aria-expanded' => 'false',
] );
$this->add_render_attribute( $tab_content_setting_key, [
'id' => 'elementor-tab-content-' . $id_int . $tab_count,
'class' => [ 'elementor-tab-content', 'elementor-clearfix' ],
'data-tab' => $tab_count,
'role' => 'tabpanel',
'aria-labelledby' => 'elementor-tab-title-' . $id_int . $tab_count,
] );
$this->add_inline_editing_attributes( $tab_content_setting_key, 'advanced' );
?>
<div class="catering-btn-services">
<div class="catering-btn-icon">
<img src="<?php Utils::print_unescaped_internal_string( $this->parse_text_editor( $item['backgroundimage']['url']) ); ?>">
</div>
<h5><?php $this->print_unescaped_setting( 'tab_count', 'tabs', $index ); ?></h5>
<h6><?php $this->print_unescaped_setting( 'tab_title', 'tabs', $index ); ?></h6>
</div>
<?php endforeach; ?>
</div>
</div>
</div>
<div class="col-lg-5">
<div class="catering-banner-img">
<img src="<?php echo $settings['bannerimage']['url']; ?>" alt="">
</div>
</div>
</div>
</div>
</div>
<?php
}
}