File: /home/dmstechonline/public_html/wp-content/plugins/xolio-core/include/elementor/infobox.php
<?php
namespace TPCore\Widgets;
use Elementor\Widget_Base;
use Elementor\Controls_Manager;
use \Elementor\Group_Control_Background;
use \Elementor\Group_Control_Image_Size;
use \Elementor\Repeater;
use \Elementor\Utils;
use \Elementor\Control_Media;
if (!defined('ABSPATH')) exit; // Exit if accessed directly
/**
* Xolio Core
*
* Elementor widget for hello world.
*
* @since 1.0.0
*/
class TG_InfoBox extends Widget_Base
{
/**
* Retrieve the widget name.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget name.
*/
public function get_name()
{
return 'contact-info';
}
/**
* Retrieve the widget title.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget title.
*/
public function get_title()
{
return __('Contact Info', 'tpcore');
}
/**
* Retrieve the widget icon.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget icon.
*/
public function get_icon()
{
return 'tp-icon';
}
/**
* 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 ['tpcore'];
}
/**
* Retrieve the list of scripts the widget depended on.
*
* Used to set scripts dependencies required to run the widget.
*
* @since 1.0.0
*
* @access public
*
* @return array Widget scripts dependencies.
*/
public function get_script_depends()
{
return ['tpcore'];
}
/**
* 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()
{
// _tg_info_list
$this->start_controls_section(
'_tg_info_list',
[
'label' => esc_html__('Info List', 'tpcore'),
]
);
$repeater = new \Elementor\Repeater();
$repeater->add_control(
'tg_image',
[
'label' => esc_html__('Upload Icon', 'tpcore'),
'type' => Controls_Manager::MEDIA,
'default' => [
'url' => Utils::get_placeholder_image_src(),
],
]
);
$repeater->add_control(
'repeater_title',
[
'label' => esc_html__('Title', 'tpcore'),
'type' => Controls_Manager::TEXT,
'default' => esc_html__('Address', 'tpcore'),
'placeholder' => esc_html__('Type list text', 'tpcore'),
'label_block' => true,
]
);
$repeater->add_control(
'repeater_desc',
[
'label' => esc_html__('Description', 'tpcore'),
'type' => Controls_Manager::TEXT,
'default' => esc_html__('UN82 Dhanmondi Dhaka - 1207', 'tpcore'),
'label_block' => true,
]
);
$this->add_control(
'item_lists',
[
'label' => esc_html__('Item Lists', 'tpcore'),
'type' => Controls_Manager::REPEATER,
'fields' => $repeater->get_controls(),
'default' => [
[
'repeater_title' => esc_html__('Address', 'tpcore'),
'repeater_desc' => esc_html__('UN82 Dhanmondi Dhaka - 1207', 'tpcore'),
],
[
'repeater_title' => esc_html__('Email', 'tpcore'),
'repeater_desc' => esc_html__('your@email.com', 'tpcore'),
],
[
'repeater_title' => esc_html__('Phone', 'tpcore'),
'repeater_desc' => esc_html__('+12548789300', 'tpcore'),
],
],
]
);
$this->end_controls_section();
// STYLE TAB
$this->start_controls_section(
'section_style',
[
'label' => esc_html__('Style', 'tpcore'),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_control(
'text_transform',
[
'label' => esc_html__('Text Transform', 'tpcore'),
'type' => Controls_Manager::SELECT,
'default' => '',
'options' => [
'' => esc_html__('None', 'tpcore'),
'uppercase' => esc_html__('UPPERCASE', 'tpcore'),
'lowercase' => esc_html__('lowercase', 'tpcore'),
'capitalize' => esc_html__('Capitalize', 'tpcore'),
],
'selectors' => [
'{{WRAPPER}} .title' => 'text-transform: {{VALUE}};',
],
]
);
$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();
?>
<div class="inner-contact-info">
<ul class="list-wrap">
<?php foreach ($settings['item_lists'] as $item) : ?>
<li>
<div class="contact-info-item">
<?php if (!empty($item['tg_image']['url'])) : ?>
<div class="icon">
<img src="<?php echo tp_kses($item['tg_image']['url']); ?>" alt="<?php echo esc_attr__('Image Icon', 'tpcore') ?>">
</div>
<?php endif; ?>
<div class="content">
<?php if (!empty($item['repeater_title'])) : ?>
<h6 class="title"><?php echo tp_kses($item['repeater_title']); ?></h6>
<?php endif; ?>
<?php if (!empty($item['repeater_desc'])) : ?>
<p><?php echo tp_kses($item['repeater_desc']); ?></p>
<?php endif; ?>
</div>
</div>
</li>
<?php endforeach; ?>
</ul>
</div>
<?php
}
}
$widgets_manager->register(new TG_InfoBox());