| Server IP : 69.72.244.102 / Your IP : 216.73.216.164 Web Server : LiteSpeed System : Linux s3434.fra1.stableserver.net 4.18.0-513.24.1.lve.2.el8.x86_64 #1 SMP Fri May 24 12:42:50 UTC 2024 x86_64 User : konzalta ( 1271) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/thread-self/cwd/wp-content/plugins/portx-core/include/elementor/ |
Upload File : |
<?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;
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
/**
* Tp Core
*
* Elementor widget for hello world.
*
* @since 1.0.0
*/
class TP_Process extends Widget_Base {
use \TPCore\Widgets\TPCoreElementFunctions;
/**
* Retrieve the widget name.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget name.
*/
public function get_name() {
return 'process';
}
/**
* Retrieve the widget title.
*
* @since 1.0.0
*
* @access public
*
* @return string Widget title.
*/
public function get_title() {
return __( 'Process', '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(){
$this->register_controls_section();
$this->style_tab_content();
}
protected function register_controls_section() {
// layout Panel
$this->start_controls_section(
'tp_layout',
[
'label' => esc_html__('Design Layout', 'tpcore'),
]
);
$this->add_control(
'tp_design_style',
[
'label' => esc_html__('Select Layout', 'tpcore'),
'type' => Controls_Manager::SELECT,
'options' => [
'layout-1' => esc_html__('Layout 1', 'tpcore'),
'layout-2' => esc_html__('Layout 2', 'tpcore'),
],
'default' => 'layout-1',
]
);
$this->end_controls_section();
// tp_section_title
$this->start_controls_section(
'tp_section_title',
[
'label' => esc_html__('Title & Content', 'tpcore'),
'condition' => [
'tp_design_style' => 'layout-2'
]
]
);
$this->add_control(
'tp_sub_title',
[
'label' => esc_html__('Sub Title', 'tpcore'),
'description' => tp_get_allowed_html_desc( 'basic' ),
'type' => Controls_Manager::TEXT,
'default' => esc_html__('TP Sub Title', 'tpcore'),
'placeholder' => esc_html__('Type Sub Heading Text', 'tpcore'),
'label_block' => true,
]
);
$this->add_control(
'tp_title',
[
'label' => esc_html__('Title', 'tpcore'),
'description' => tp_get_allowed_html_desc( 'intermediate' ),
'type' => Controls_Manager::TEXT,
'default' => esc_html__('TP Title Here', 'tpcore'),
'placeholder' => esc_html__('Type Heading Text', 'tpcore'),
'label_block' => true,
]
);
$this->add_control(
'tp_desctiption',
[
'label' => esc_html__('Description', 'tpcore'),
'description' => tp_get_allowed_html_desc( 'intermediate' ),
'type' => Controls_Manager::TEXTAREA,
'default' => esc_html__('TP section description here', 'tpcore'),
'placeholder' => esc_html__('Type section description here', 'tpcore'),
]
);
$this->add_control(
'tp_title_tag',
[
'label' => esc_html__('Title HTML Tag', 'tpcore'),
'type' => Controls_Manager::CHOOSE,
'options' => [
'h1' => [
'title' => esc_html__('H1', 'tpcore'),
'icon' => 'eicon-editor-h1'
],
'h2' => [
'title' => esc_html__('H2', 'tpcore'),
'icon' => 'eicon-editor-h2'
],
'h3' => [
'title' => esc_html__('H3', 'tpcore'),
'icon' => 'eicon-editor-h3'
],
'h4' => [
'title' => esc_html__('H4', 'tpcore'),
'icon' => 'eicon-editor-h4'
],
'h5' => [
'title' => esc_html__('H5', 'tpcore'),
'icon' => 'eicon-editor-h5'
],
'h6' => [
'title' => esc_html__('H6', 'tpcore'),
'icon' => 'eicon-editor-h6'
]
],
'default' => 'h2',
'toggle' => false,
]
);
$this->add_responsive_control(
'tp_align',
[
'label' => esc_html__('Alignment', 'tpcore'),
'type' => Controls_Manager::CHOOSE,
'options' => [
'text-left' => [
'title' => esc_html__('Left', 'tpcore'),
'icon' => 'eicon-text-align-left',
],
'text-center' => [
'title' => esc_html__('Center', 'tpcore'),
'icon' => 'eicon-text-align-center',
],
'text-right' => [
'title' => esc_html__('Right', 'tpcore'),
'icon' => 'eicon-text-align-right',
],
],
'default' => 'left',
'toggle' => false,
]
);
$this->end_controls_section();
// Process group
$this->start_controls_section(
'tp_process',
[
'label' => esc_html__('Process List', 'tpcore'),
'description' => esc_html__( 'Control all the style settings from Style tab', 'tpcore' ),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
]
);
$repeater = new \Elementor\Repeater();
$repeater->add_control(
'repeater_condition',
[
'label' => __( 'Field condition', 'tpcore' ),
'type' => Controls_Manager::SELECT,
'options' => [
'style_1' => __( 'Style 1', 'tpcore' ),
'style_2' => __( 'Style 2', 'tpcore' ),
],
'default' => 'style_1',
'frontend_available' => true,
'style_transfer' => true,
]
);
$repeater->add_control(
'tp_box_icon_type',
[
'label' => esc_html__('Select Icon Type', 'tpcore'),
'type' => \Elementor\Controls_Manager::SELECT,
'default' => 'icon',
'options' => [
'image' => esc_html__('Image', 'tpcore'),
'icon' => esc_html__('Icon', 'tpcore'),
'svg' => esc_html__('SVG', 'tpcore'),
],
]
);
$repeater->add_control(
'tp_box_icon_svg',
[
'show_label' => false,
'type' => Controls_Manager::TEXTAREA,
'label_block' => true,
'placeholder' => esc_html__('SVG Code Here', 'tpcore'),
'condition' => [
'tp_box_icon_type' => 'svg',
]
]
);
$repeater->add_control(
'tp_box_icon_image',
[
'label' => esc_html__('Upload Icon Image', 'tpcore'),
'type' => Controls_Manager::MEDIA,
'default' => [
'url' => Utils::get_placeholder_image_src(),
],
'condition' => [
'tp_box_icon_type' => 'image',
]
]
);
if (tp_is_elementor_version('<', '2.6.0')) {
$repeater->add_control(
'tp_box_icon',
[
'show_label' => false,
'type' => Controls_Manager::ICON,
'label_block' => true,
'default' => 'fa fa-star',
'condition' => [
'tp_box_icon_type' => 'icon',
]
]
);
} else {
$repeater->add_control(
'tp_box_selected_icon',
[
'show_label' => false,
'type' => Controls_Manager::ICONS,
'fa4compatibility' => 'icon',
'label_block' => true,
'default' => [
'value' => 'fas fa-star',
'library' => 'solid',
],
'condition' => [
'tp_box_icon_type' => 'icon',
]
]
);
}
$repeater->add_control(
'tp_process_word', [
'label' => esc_html__('Single Word', 'tpcore'),
'description' => tp_get_allowed_html_desc( 'basic' ),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => esc_html__('01', 'tpcore'),
'condition' => [
'repeater_condition' => 'style_1'
]
]
);
$repeater->add_control(
'tp_process_title', [
'label' => esc_html__('Title', 'tpcore'),
'description' => tp_get_allowed_html_desc( 'basic' ),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => esc_html__('Process Title', 'tpcore'),
'label_block' => true,
]
);
$repeater->add_control(
'tp_process_description',
[
'label' => esc_html__('Description', 'tpcore'),
'description' => tp_get_allowed_html_desc( 'intermediate' ),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'default' => 'There are many variations of passages of Lorem Ipsum available, but the majority have suffered.',
'label_block' => true,
'condition' => [
'repeater_condition' => 'style_2'
]
]
);
$repeater->add_control(
'tp_back_image',
[
'label' => esc_html__('Upload Back Icon Image', 'tpcore'),
'type' => Controls_Manager::MEDIA,
'default' => [
'url' => Utils::get_placeholder_image_src(),
],
'condition' => [
'repeater_condition' => 'style_2'
]
]
);
$repeater->add_group_control(
Group_Control_Image_Size::get_type(),
[
'name' => 'back_image_size', // // Usage: `{name}_size` and `{name}_custom_dimension`, in this case `thumbnail_size` and `thumbnail_custom_dimension`.
'exclude' => ['custom'],
'condition' => [
'repeater_condition' => 'style_2'
]
]
);
// creative animation
$repeater->add_control(
'tp_creative_anima_switcher',
[
'label' => esc_html__( 'Active Animation', 'tpcore' ),
'type' => \Elementor\Controls_Manager::SWITCHER,
'label_on' => esc_html__( 'Yes', 'tpcore ' ),
'label_off' => esc_html__( 'No', 'tpcore ' ),
'return_value' => 'yes',
'default' => '0',
'separator' => 'before',
'condition' => [
'repeater_condition' => 'style_2'
]
]
);
$repeater->add_control(
'tp_anima_type',
[
'label' => __( 'Animation Type', 'tpcore' ),
'type' => Controls_Manager::SELECT,
'options' => [
'fadeInUp' => __( 'fadeInUp', 'tpcore' ),
'fadeInDown' => __( 'fadeInDown', 'tpcore' ),
'fadeInLeft' => __( 'fadeInLeft', 'tpcore' ),
'fadeInRight' => __( 'fadeInRight', 'tpcore' ),
],
'default' => 'fadeInUp',
'frontend_available' => true,
'style_transfer' => true,
'condition' => [
'tp_creative_anima_switcher' => 'yes',
'repeater_condition' => 'style_2'
],
]
);
$repeater->add_control(
'tp_anima_dura', [
'label' => esc_html__('Animation Duration', 'tpcore'),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => esc_html__('0.3s', 'tpcore'),
'condition' => [
'tp_creative_anima_switcher' => 'yes',
'repeater_condition' => 'style_2'
],
]
);
$repeater->add_control(
'tp_anima_delay', [
'label' => esc_html__('Animation Delay', 'tpcore'),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => esc_html__('0.6s', 'tpcore'),
'condition' => [
'tp_creative_anima_switcher' => 'yes',
'repeater_condition' => 'style_2'
],
]
);
$this->add_control(
'tp_process_list',
[
'label' => esc_html__('Processs - List', 'tpcore'),
'type' => \Elementor\Controls_Manager::REPEATER,
'fields' => $repeater->get_controls(),
'default' => [
[
'tp_process_title' => esc_html__('Discover', 'tpcore'),
],
[
'tp_process_title' => esc_html__('Define', 'tpcore')
],
[
'tp_process_title' => esc_html__('Develop', 'tpcore')
],
],
'title_field' => '{{{ tp_process_title }}}',
]
);
$this->end_controls_section();
// shape
$this->start_controls_section(
'tp_shape',
[
'label' => esc_html__( 'Shape Section', 'tpcore' ),
]
);
$this->add_control(
'tp_shape_switch',
[
'label' => esc_html__( 'Shape On/Off', 'tpcore' ),
'type' => \Elementor\Controls_Manager::SWITCHER,
'label_on' => esc_html__( 'Show', 'tpcore' ),
'label_off' => esc_html__( 'Hide', 'tpcore' ),
'return_value' => 'yes',
'default' => '0',
]
);
$this->add_control(
'tp_shape_image_1',
[
'label' => esc_html__( 'Choose Shape Image 1', 'tp-core' ),
'type' => \Elementor\Controls_Manager::MEDIA,
'default' => [
'url' => \Elementor\Utils::get_placeholder_image_src(),
],
'condition' => [
'tp_shape_switch' => 'yes'
]
]
);
$this->add_group_control(
Group_Control_Image_Size::get_type(),
[
'name' => 'shape_image_size', // // Usage: `{name}_size` and `{name}_custom_dimension`, in this case `thumbnail_size` and `thumbnail_custom_dimension`.
'exclude' => ['custom'],
'condition' => [
'tp_shape_switch' => 'yes'
]
]
);
$this->end_controls_section();
}
// style_tab_content
protected function style_tab_content(){
$this->tp_section_style_controls('services_section', 'Section - Style', '.tp-el-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['tp_design_style'] == 'layout-2' ) :
// shape image
if ( !empty($settings['tp_shape_image_1']['url']) ) {
$tp_shape_image = !empty($settings['tp_shape_image_1']['id']) ? wp_get_attachment_image_url( $settings['tp_shape_image_1']['id'], $settings['shape_image_size_size']) : $settings['tp_shape_image_1']['url'];
$tp_shape_image_alt = get_post_meta($settings["tp_shape_image_1"]["id"], "_wp_attachment_image_alt", true);
}
$this->add_render_attribute('title_args', 'class', 'tp-section__title mb-10 wow fadeInUp');
$this->add_render_attribute('title_args', 'data-wow-duration', '.9s');
$this->add_render_attribute('title_args', 'data-wow-delay', '.5s');
?>
<section class="choose-area tp-choose-3-responsive-padding pt-120 pb-10 p-relative fix">
<?php if(!empty($tp_shape_image)) : ?>
<div class="tp-choose-3__shap-air-plan-2 wow slideInRight ">
<img src="<?php echo esc_url($tp_shape_image); ?>" alt="<?php echo esc_attr($tp_shape_image_alt); ?>">
</div>
<?php endif; ?>
<div class="container">
<div class="row justify-content-center">
<div class="col-xxl-8 col-xl-8 col-lg-10 ">
<div class="blog-section-title text-center pb-40">
<?php if ( !empty($settings['tp_sub_title']) ) : ?>
<div class="tp-section__subtitle mb-15 p-relative wow fadeInUp " data-wow-duration=".9s" data-wow-delay=".3s"><?php echo tp_kses( $settings['tp_sub_title'] ); ?></div>
<?php endif; ?>
<?php
if ( !empty($settings['tp_title' ]) ) :
printf( '<%1$s %2$s>%3$s</%1$s>',
tag_escape( $settings['tp_title_tag'] ),
$this->get_render_attribute_string( 'title_args' ),
tp_kses( $settings['tp_title' ] )
);
endif;
?>
<?php if ( !empty($settings['tp_desctiption']) ) : ?>
<p><?php echo tp_kses( $settings['tp_desctiption'] ); ?></p>
<?php endif; ?>
</div>
</div>
</div>
<div class="row">
<?php foreach ($settings['tp_process_list'] as $key => $item) :
// bg image
if ( !empty($item['tp_back_image']['url']) ) {
$tp_back_image = !empty($item['tp_back_image']['id']) ? wp_get_attachment_image_url( $item['tp_back_image']['id'], $item['back_image_size_size']) : $item['tp_back_image']['url'];
$tp_back_image_alt = get_post_meta($item["tp_back_image"]["id"], "_wp_attachment_image_alt", true);
}
?>
<?php if(!empty($item['tp_creative_anima_switcher'])) : ?>
<div class="col-lg-6 col-md-6 col-12 wow <?php echo esc_attr($item['tp_anima_type']); ?>" data-wow-duration="<?php echo esc_attr($item['tp_anima_dura']); ?>" data-wow-delay="<?php echo esc_attr($item['tp_anima_delay']); ?>">
<?php else : ?>
<div class="col-lg-6 col-md-6 col-12 ">
<?php endif; ?>
<div class="tp-choose-3__item fadeleft d-flex p-relative fadeLeft mb-40" >
<div class="tp-choose-3__counter">
<?php if(!empty($tp_back_image)) : ?>
<div class="tp-choose-3__thumb p-relative">
<img src="<?php echo esc_url($tp_back_image); ?>" alt="<?php echo esc_attr($tp_back_image_alt); ?>">
</div>
<?php endif; ?>
<div class="tp-choose-3__icon">
<?php if($item['tp_box_icon_type'] == 'icon') : ?>
<?php if (!empty($item['tp_box_icon']) || !empty($item['tp_box_selected_icon']['value'])) : ?>
<span><?php tp_render_icon($item, 'tp_box_icon', 'tp_box_selected_icon'); ?></span>
<?php endif; ?>
<?php elseif( $item['tp_box_icon_type'] == 'image' ) : ?>
<?php if (!empty($item['tp_box_icon_image']['url'])): ?>
<span><img src="<?php echo $item['tp_box_icon_image']['url']; ?>" alt="<?php echo get_post_meta(attachment_url_to_postid($item['tp_box_icon_image']['url']), '_wp_attachment_image_alt', true); ?>"></span>
<?php endif; ?>
<?php else : ?>
<?php if (!empty($item['tp_box_icon_svg'])): ?>
<span><?php echo $item['tp_box_icon_svg']; ?></span>
<?php endif; ?>
<?php endif; ?>
</div>
</div>
<div class="tp-choose-3__content">
<?php if(!empty($item['tp_process_title'])) : ?>
<span><?php echo tp_kses($item['tp_process_title']); ?></span>
<?php endif; ?>
<?php if(!empty($item['tp_process_description'])) : ?>
<p><?php echo tp_kses($item['tp_process_description']); ?></p>
<?php endif; ?>
</div>
</div>
</div>
<?php endforeach; ?>
</div>
</div>
</section>
<?php else:
// shape image
if ( !empty($settings['tp_shape_image_1']['url']) ) {
$tp_shape_image = !empty($settings['tp_shape_image_1']['id']) ? wp_get_attachment_image_url( $settings['tp_shape_image_1']['id'], $settings['shape_image_size_size']) : $settings['tp_shape_image_1']['url'];
$tp_shape_image_alt = get_post_meta($settings["tp_shape_image_1"]["id"], "_wp_attachment_image_alt", true);
}
?>
<section class="process-ele-area">
<div class="container">
<div class="tp-work-2__wrapper p-relative">
<div class="row">
<?php if(!empty($tp_shape_image)) : ?>
<div class="tp-work-2__shap-img">
<img src="<?php echo esc_url($tp_shape_image); ?>" alt="<?php echo esc_attr($tp_shape_image_alt); ?>">
</div>
<?php endif; ?>
<?php foreach ($settings['tp_process_list'] as $key => $item) : ?>
<div class="col-xl-4 col-lg-4 col-md-4">
<div class="tp-work-2__item text-center pb-30">
<div class="tp-work-2__icon">
<span>
<b><?php echo $item['tp_process_word'] ? tp_kses($item['tp_process_word']) : NULL ; ?></b>
<?php if($item['tp_box_icon_type'] == 'icon') : ?>
<?php if (!empty($item['tp_box_icon']) || !empty($item['tp_box_selected_icon']['value'])) : ?>
<?php tp_render_icon($item, 'tp_box_icon', 'tp_box_selected_icon'); ?>
<?php endif; ?>
<?php elseif( $item['tp_box_icon_type'] == 'image' ) : ?>
<?php if (!empty($item['tp_box_icon_image']['url'])): ?>
<img src="<?php echo $item['tp_box_icon_image']['url']; ?>" alt="<?php echo get_post_meta(attachment_url_to_postid($item['tp_box_icon_image']['url']), '_wp_attachment_image_alt', true); ?>">
<?php endif; ?>
<?php else : ?>
<?php if (!empty($item['tp_box_icon_svg'])): ?>
<?php echo $item['tp_box_icon_svg']; ?>
<?php endif; ?>
<?php endif; ?>
</span>
</div>
<?php if(!empty($item['tp_process_title'])) : ?>
<div class="tp-work-2__content pt-25 ">
<h3 class="tp-work-2-title-3"><?php echo tp_kses($item['tp_process_title']); ?></h3>
</div>
<?php endif; ?>
</div>
</div>
<?php endforeach; ?>
</div>
</div>
</div>
</section>
<?php endif;
}
}
$widgets_manager->register( new TP_Process() );