D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
etb1lp46s9ed
/
www
/
lalpathamroha.site
/
wp-content
/
plugins
/
tp-core
/
include
/
elementor
/
Filename :
tp-btn.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_Btn 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 'tp-btn'; } /** * Retrieve the widget title. * * @since 1.0.0 * * @access public * * @return string Widget title. */ public function get_title() { return __( 'TP BTN', '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'), 'layout-3' => esc_html__('Layout 3', 'tpcore'), ], 'default' => 'layout-1', ] ); $this->end_controls_section(); // tp_btn_button_group $this->start_controls_section( 'tp_btn_button_group', [ 'label' => esc_html__('Button', 'tpcore'), ] ); $this->add_control( 'tp_btn_button_show', [ 'label' => esc_html__( 'Show Button', 'tpcore' ), 'type' => Controls_Manager::SWITCHER, 'label_on' => esc_html__( 'Show', 'tpcore' ), 'label_off' => esc_html__( 'Hide', 'tpcore' ), 'return_value' => 'yes', 'default' => 'yes', ] ); $this->add_control( 'tp_btn_before_text', [ 'label' => esc_html__('Button Before Text', 'tpcore'), 'type' => Controls_Manager::TEXT, 'default' => esc_html__('Button Before Text:', 'tpcore'), 'title' => esc_html__('Enter button before text', 'tpcore'), 'label_block' => true, 'condition' => [ 'tp_btn_button_show' => 'yes' ], ] ); $this->add_control( 'tp_btn_text', [ 'label' => esc_html__('Button Text', 'tpcore'), 'type' => Controls_Manager::TEXT, 'default' => esc_html__('Button Text', 'tpcore'), 'title' => esc_html__('Enter button text', 'tpcore'), 'label_block' => true, 'condition' => [ 'tp_btn_button_show' => 'yes' ], ] ); $this->add_control( 'tp_btn_link_type', [ 'label' => esc_html__('Button Link Type', 'tpcore'), 'type' => Controls_Manager::SELECT, 'options' => [ '1' => 'Custom Link', '2' => 'Internal Page', ], 'default' => '1', 'label_block' => true, 'condition' => [ 'tp_btn_button_show' => 'yes' ], ] ); $this->add_control( 'tp_btn_link', [ 'label' => esc_html__('Button link', 'tpcore'), 'type' => Controls_Manager::URL, 'dynamic' => [ 'active' => true, ], 'placeholder' => esc_html__('https://your-link.com', 'tpcore'), 'show_external' => false, 'default' => [ 'url' => '#', 'is_external' => true, 'nofollow' => true, 'custom_attributes' => '', ], 'condition' => [ 'tp_btn_link_type' => '1', 'tp_btn_button_show' => 'yes' ], 'label_block' => true, ] ); $this->add_control( 'tp_btn_page_link', [ 'label' => esc_html__('Select Button Page', 'tpcore'), 'type' => Controls_Manager::SELECT2, 'label_block' => true, 'options' => tp_get_all_pages(), 'condition' => [ 'tp_btn_link_type' => '2', 'tp_btn_button_show' => 'yes' ] ] ); $this->add_responsive_control( 'tp_align', [ 'label' => esc_html__('Alignment', 'tpcore'), 'type' => Controls_Manager::CHOOSE, 'options' => [ 'left' => [ 'title' => esc_html__('Left', 'tpcore'), 'icon' => 'eicon-text-align-left', ], 'center' => [ 'title' => esc_html__('Center', 'tpcore'), 'icon' => 'eicon-text-align-center', ], 'right' => [ 'title' => esc_html__('Right', 'tpcore'), 'icon' => 'eicon-text-align-right', ], ], 'default' => 'left', 'toggle' => false, 'selectors' => [ '{{WRAPPER}} .tp-btn-box' => 'text-align: {{VALUE}} !important;' ] ] ); $this->end_controls_section(); } // style_tab_content protected function style_tab_content(){ $this->tp_link_controls_style_2('button', 'Button Style', '.ele-button'); } /** * 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' ): // Link if ('2' == $settings['tp_btn_link_type']) { $this->add_render_attribute('tp-button-arg', 'href', get_permalink($settings['tp_btn_page_link'])); $this->add_render_attribute('tp-button-arg', 'target', '_self'); $this->add_render_attribute('tp-button-arg', 'rel', 'nofollow'); $this->add_render_attribute('tp-button-arg', 'class', 'tp-btn ele-button'); } else { if ( ! empty( $settings['tp_btn_link']['url'] ) ) { $this->add_link_attributes( 'tp-button-arg', $settings['tp_btn_link'] ); $this->add_render_attribute('tp-button-arg', 'class', 'tp-btn ele-button'); } } ?> <?php if (!empty($settings['tp_btn_text'])) : ?> <div class="tp-btn-box"> <a <?php echo $this->get_render_attribute_string( 'tp-button-arg' ); ?>> <?php echo $settings['tp_btn_text']; ?> </a> </div> <?php endif; ?> <?php elseif ( $settings['tp_design_style'] == 'layout-3' ): // Link if ('2' == $settings['tp_btn_link_type']) { $this->add_render_attribute('tp-button-arg', 'href', get_permalink($settings['tp_btn_page_link'])); $this->add_render_attribute('tp-button-arg', 'target', '_self'); $this->add_render_attribute('tp-button-arg', 'rel', 'nofollow'); $this->add_render_attribute('tp-button-arg', 'class', 'ele-button'); } else { if ( ! empty( $settings['tp_btn_link']['url'] ) ) { $this->add_link_attributes( 'tp-button-arg', $settings['tp_btn_link'] ); $this->add_render_attribute('tp-button-arg', 'class', 'ele-button'); } } ?> <?php if (!empty($settings['tp_btn_text'])) : ?> <div class="services-link tp-srv-link tp-btn-box"> <span><?php echo $settings['tp_btn_before_text']; ?><a <?php echo $this->get_render_attribute_string( 'tp-button-arg' ); ?>><?php echo $settings['tp_btn_text']; ?><i class="fa-solid fa-arrow-right"></i></a></span> </div> <?php endif; ?> <?php else: // Link if ('2' == $settings['tp_btn_link_type']) { $this->add_render_attribute('tp-button-arg', 'href', get_permalink($settings['tp_btn_page_link'])); $this->add_render_attribute('tp-button-arg', 'target', '_self'); $this->add_render_attribute('tp-button-arg', 'rel', 'nofollow'); $this->add_render_attribute('tp-button-arg', 'class', 'tp-btn-second ele-button'); } else { if ( ! empty( $settings['tp_btn_link']['url'] ) ) { $this->add_link_attributes( 'tp-button-arg', $settings['tp_btn_link'] ); $this->add_render_attribute('tp-button-arg', 'class', 'tp-btn-second ele-button'); } } ?> <?php if (!empty($settings['tp_btn_text'])) : ?> <div class="tp-btn-box"> <a <?php echo $this->get_render_attribute_string( 'tp-button-arg' ); ?>> <?php echo $settings['tp_btn_text']; ?> </a> </div> <?php endif; ?> <?php endif; } } $widgets_manager->register( new TP_Btn() );