D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
etb1lp46s9ed
/
www
/
lalpathamroha.site
/
wp-content
/
plugins
/
tp-core
/
include
/
elementor
/
Filename :
iconbox.php
back
Copy
<?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 /** * Tp Core * * Elementor widget for hello world. * * @since 1.0.0 */ class TP_IconBox extends Widget_Base { /** * Retrieve the widget name. * * @since 1.0.0 * * @access public * * @return string Widget name. */ public function get_name() { return 'iconbox'; } /** * Retrieve the widget title. * * @since 1.0.0 * * @access public * * @return string Widget title. */ public function get_title() { return __( 'Icon Box', '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( '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(); $this->start_controls_section( 'tp_features', [ 'label' => esc_html__('Icon Box', 'tpcore'), 'description' => esc_html__( 'Control all the style settings from Style tab', 'tpcore' ), 'tab' => \Elementor\Controls_Manager::TAB_CONTENT, ] ); $this->add_control( 'tp_bg_image', [ 'label' => esc_html__('BG Image', 'tpcore'), 'type' => Controls_Manager::MEDIA, 'default' => [ 'url' => Utils::get_placeholder_image_src(), ], 'condition' => [ 'tp_bg_image' => 'layout-1' ] ] ); $this->add_control( 'tp_features_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'), ], ] ); $this->add_control( 'tp_features_image', [ 'label' => esc_html__('Upload Icon Image', 'tpcore'), 'type' => Controls_Manager::MEDIA, 'default' => [ 'url' => Utils::get_placeholder_image_src(), ], 'condition' => [ 'tp_features_icon_type' => 'image' ] ] ); $this->add_control( 'tp_features_icon_svg', [ 'show_label' => false, 'type' => Controls_Manager::TEXTAREA, 'label_block' => true, 'placeholder' => esc_html__('SVG Code Here', 'tpcore'), 'condition' => [ 'tp_features_icon_type' => 'svg' ] ] ); if (tp_is_elementor_version('<', '2.6.0')) { $this->add_control( 'tp_features_icon', [ 'show_label' => false, 'type' => Controls_Manager::ICON, 'label_block' => true, 'default' => 'fa fa-star', 'condition' => [ 'tp_features_icon_type' => 'icon' ] ] ); } else { $this->add_control( 'tp_features_selected_icon', [ 'show_label' => false, 'type' => Controls_Manager::ICONS, 'fa4compatibility' => 'icon', 'label_block' => true, 'default' => [ 'value' => 'fas fa-star', 'library' => 'solid', ], 'condition' => [ 'tp_features_icon_type' => 'icon' ] ] ); } $this->add_control( 'tp_features_title', [ 'label' => esc_html__('Title', 'tpcore'), 'description' => tp_get_allowed_html_desc( 'basic' ), 'type' => \Elementor\Controls_Manager::TEXT, 'default' => esc_html__('Icon Box Title', 'tpcore'), 'label_block' => true, ] ); $this->add_control( 'tp_features_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, ] ); $this->add_control( 'tp_features_step', [ 'label' => esc_html__('Step', 'tpcore'), 'description' => tp_get_allowed_html_desc( 'basic' ), 'type' => \Elementor\Controls_Manager::TEXT, 'default' => esc_html__('1', 'tpcore'), 'label_block' => true, ] ); $this->end_controls_section(); // tp_btn_button_group $this->start_controls_section( 'section_style', [ 'label' => __( 'Style', 'tpcore' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_control( 'text_transform', [ 'label' => __( 'Text Transform', 'tpcore' ), 'type' => Controls_Manager::SELECT, 'default' => '', 'options' => [ '' => __( 'None', 'tpcore' ), 'uppercase' => __( 'UPPERCASE', 'tpcore' ), 'lowercase' => __( 'lowercase', 'tpcore' ), 'capitalize' => __( '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['tp_design_style'] == 'layout-2' ): $this->add_render_attribute('title_args', 'class', 'research__title'); ?> <div class="research__item research__item-border text-center mb-30 transition-3"> <div class="research__thumb mb-35"> <?php if($settings['tp_icon_type'] !== 'image') : ?> <?php if (!empty($settings['tp_icon']) || !empty($settings['tp_selected_icon']['value'])) : ?> <div class="tp-icon"> <?php tp_render_icon($settings, 'tp_icon', 'tp_selected_icon'); ?> </div> <?php endif; ?> <?php else : ?> <div class="icon"> <?php echo Group_Control_Image_Size::get_attachment_image_html($settings, 'full', 'tp_icon_image'); ?> </div> <?php endif; ?> </div> <div class="research__content"> <?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> <?php else: ?> <div class="services__details-process process-style-2 mb-20"> <div class="process__item-2 text-center p-relative transition-3 mb-30"> <div class="process__step"> <span>step <?php echo tp_kses($settings['tp_features_step' ]); ?></span> </div> <div class="process__icon-2"> <?php if($settings['tp_features_icon_type'] == 'icon') : ?> <?php if (!empty($settings['tp_features_icon']) || !empty($settings['tp_features_selected_icon']['value'])) : ?> <span><?php tp_render_icon($settings, 'tp_features_icon', 'tp_features_selected_icon'); ?></span> <?php endif; ?> <?php elseif( $settings['tp_features_icon_type'] == 'image' ) : ?> <span> <?php if (!empty($settings['tp_features_image']['url'])): ?> <img class="light" src="<?php echo $settings['tp_features_image']['url']; ?>" alt="<?php echo get_post_meta(attachment_url_to_postid($settings['tp_features_image']['url']), '_wp_attachment_image_alt', true); ?>"> <?php endif; ?> </span> <?php else : ?> <span> <?php if (!empty($settings['tp_features_icon_svg'])): ?> <?php echo $settings['tp_features_icon_svg']; ?> <?php endif; ?> </span> <?php endif; ?> </div> <div class="process__content-2"> <?php if (!empty($settings['tp_features_title' ])): ?> <h3 class="process__title-2"> <?php echo tp_kses($settings['tp_features_title' ]); ?> </h3> <?php endif; ?> <?php if (!empty($settings['tp_features_description' ])): ?> <p><?php echo tp_kses($settings['tp_features_description']); ?></p> <?php endif; ?> </div> </div> </div> <?php endif; ?> <?php } } $widgets_manager->register( new TP_IconBox() );