File: /mnt/data/truelysell-wp/carwash/wp-content/plugins/truelysell-elementor/widgets/class-how-works.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;
if ( ! defined( 'ABSPATH' ) ) {
// Exit if accessed directly.
exit;
}
/**
* Awesomesauce widget class.
*
* @since 1.0.0
*/
class Truelysell_HowWorks extends Widget_Base {
/**
* Retrieve the widget name.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget name.
*/
public function get_name() {
return 'truelysell-howworks';
}
/**
* Retrieve the widget title.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget title.
*/
public function get_title() {
return __( 'Truelysell How Works', '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' => __( 'How Truelysell', 'truelysell_elementor' ),
)
);
$this->add_control(
'ttitle',
array(
'label' => __( 'Highlight Title', 'truelysell_elementor' ),
'type' => Controls_Manager::TEXT,
'default' => __( 'Works', 'truelysell_elementor' ),
)
);
$this->add_control(
'subtitle',
array(
'label' => __( 'Sub-Title', 'truelysell_elementor' ),
'type' => Controls_Manager::TEXT,
'default' => __( 'Each listing is designed to be clear and concise, providing customers', 'truelysell_elementor' ),
)
);
$this->end_controls_section();
$this->start_controls_section(
'section_toggle',
[
'label' => esc_html__( 'Toggle', 'truelysell_elementor' ),
]
);
$repeater = new \Elementor\Repeater();
$repeater->add_control(
'tab_title',
[
'label' => esc_html__( 'Title', 'truelysell_elementor' ),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => esc_html__( 'Appliance', 'truelysell_elementor' ),
'label_block' => true,
]
);
$repeater->add_control(
'tab_stitle',
[
'label' => esc_html__( 'Sub-Title', 'truelysell_elementor' ),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => esc_html__( 'After you post a job, our matching system identifies and alerts relevant Provider, who can then express interest in your job.', 'truelysell_elementor' ),
'label_block' => true,
]
);
$repeater->add_control(
'backgroundimage',
[
'label' => __( 'Left Image', 'truelysell_elementor' ),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [
'url' => \Elementor\Utils::get_placeholder_image_src(),
],
]
);
$this->add_control(
'tabs',
[
'label' => esc_html__( 'Toggle Items', 'truelysell_elementor' ),
'type' => \Elementor\Controls_Manager::REPEATER,
'fields' => $repeater->get_controls(),
'default' => [
[
'tab_stitle' => esc_html__( 'After you post a job, our matching system identifies and alerts relevant Provider, who can then express interest in your job.', 'truelysell_elementor' ),
'tab_title' => esc_html__( '1. Post a Service', 'truelysell_elementor' ),
],
[
'tab_stitle' => esc_html__( 'After you post a job, our matching system identifies and alerts relevant Provider, who can then express interest in your job.', 'truelysell_elementor' ),
'tab_title' => esc_html__( '2. Getting Booked & Job done', 'truelysell_elementor' ),
],
[
'tab_stitle' => esc_html__( 'After you post a job, our matching system identifies and alerts relevant Provider, who can then express interest in your job.', 'truelysell_elementor' ),
'tab_title' => esc_html__( '3. Get Reviewd & Get Leads', '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' );
?>
<!-- Work Section-->
<section class="section pt-0">
<div class="container">
<div class="work-section-new bg-black m-0">
<div class="row justify-content-center">
<div class="col-lg-6 text-center wow fadeInUp" data-wow-delay="0.2s">
<div class="section-header text-center">
<h2 class="mb-0 text-white"><?php echo $settings['title']; ?> <span class="text-linear-primary"><?php echo $settings['ttitle']; ?></span></h2>
<p class="text-light"><?php echo $settings['subtitle']; ?></p>
</div>
</div>
</div>
<div class="row gx-0 gy-4">
<?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="col-lg-4 d-flex work-section-inner">
<div class="work-item text-center flex-fill">
<?php if($item['backgroundimage']['url']) { ?>
<div class="mb-3">
<img src="<?php Utils::print_unescaped_internal_string( $this->parse_text_editor( $item['backgroundimage']['url']) ); ?>" alt="img">
</div>
<?php } ?>
<h6 class="text-white mb-2"><?php $this->print_unescaped_setting( 'tab_title', 'tabs', $index ); ?></h6>
<p><?php $this->print_unescaped_setting( 'tab_stitle', 'tabs', $index ); ?></p>
</div>
</div>
<?php endforeach; ?>
</div>
<div class="work-bg1">
<img src="<?php echo get_template_directory_uri(); ?>/assets/images/bgs/work-bg-01.svg" class="img-fluid" alt="img">
</div>
<div class="work-bg2">
<img src="<?php echo get_template_directory_uri(); ?>/assets/images/bgs/work-bg-02.svg" class="img-fluid" alt="img">
</div>
</div>
</div>
</section>
<!-- /Work Section -->
<?php
}
}