File: /home/dmstechonline/public_html/wp-content/plugins/xolio-core/include/elementor/nav-arrow.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_NAV_ARROW extends Widget_Base
{
/**
* Retrieve the widget name.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget name.
*/
public function get_name()
{
return 'tg-nav-arrow';
}
/**
* Retrieve the widget title.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget title.
*/
public function get_title()
{
return __('Nav Arrow', '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()
{
// layout Panel
$this->start_controls_section(
'tp_layout',
[
'label' => esc_html__('Design Layout', 'tpcore'),
]
);
$this->add_control(
'tg_design_style',
[
'label' => esc_html__('Select Layout', 'tpcore'),
'type' => Controls_Manager::SELECT,
'options' => [
'layout-1' => esc_html__('Project Nav', 'tpcore'),
'layout-2' => esc_html__('Testimonial Nav', 'tpcore'),
],
'default' => 'layout-1',
]
);
$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();
?>
<?php if ($settings['tg_design_style'] == 'layout-2') : ?>
<div class="testimonial-nav">
<button class="swiper-button-prev"></button>
<button class="swiper-button-next"></button>
</div>
<?php else : ?>
<div class="project-nav">
<button class="swiper-button-prev"></button>
<button class="swiper-button-next"></button>
</div>
<?php endif; ?>
<?php
}
}
$widgets_manager->register(new TG_NAV_ARROW());