/
home
/
techb158
/
public_html
/
wp-content
/
themes
/
engitech
/
inc
/
backend
/
elementor-widgets
/
/home/techb158/public_html/wp-content/themes/engitech/inc/backend/elementor-widgets
mkdir
upload
Name
Size
Mode
Actions
header/
-
0777
rm
accordions.php
9892
0666
edit
dl
rm
button.php
8489
0666
edit
dl
rm
contact-form7.php
8729
0666
edit
dl
rm
contact-info.php
9163
0666
edit
dl
rm
countdown.php
7877
0666
edit
dl
rm
counter-2.php
9834
0666
edit
dl
rm
counter-3.php
7603
0666
edit
dl
rm
counter.php
7504
0666
edit
dl
rm
domain-checker.php
7504
0666
edit
dl
rm
domain-list.php
10105
0666
edit
dl
rm
flip-box.php
8752
0666
edit
dl
rm
heading.php
6623
0666
edit
dl
rm
icon-box-1.php
10038
0666
edit
dl
rm
icon-box-2.php
13998
0666
edit
dl
rm
icon-box-3.php
12324
0666
edit
dl
rm
image-box.php
4265
0666
edit
dl
rm
image-carousel.php
9825
0666
edit
dl
rm
industries-carousel.php
12905
0666
edit
dl
rm
message-box.php
8221
0666
edit
dl
rm
number-box.php
11844
0666
edit
dl
rm
portfolio-carousel.php
15209
0666
edit
dl
rm
portfolio-filter.php
16064
0666
edit
dl
rm
post-carousel.php
12004
0666
edit
dl
rm
post-grid.php
10268
0666
edit
dl
rm
pricing-table-2.php
15246
0666
edit
dl
rm
pricing-table-3.php
14353
0666
edit
dl
rm
pricing-table.php
17700
0666
edit
dl
rm
progress-bars.php
8535
0666
edit
dl
rm
service-box-1.php
11643
0666
edit
dl
rm
service-box-2.php
13750
0666
edit
dl
rm
social-share.php
10712
0666
edit
dl
rm
support-box.php
11836
0666
edit
dl
rm
switcher.php
5182
0666
edit
dl
rm
tab-titles-2.php
5390
0666
edit
dl
rm
tab-titles.php
8635
0666
edit
dl
rm
tabs.php
7505
0666
edit
dl
rm
team.php
12265
0666
edit
dl
rm
tech-box.php
10130
0666
edit
dl
rm
testimonial-carousel-2.php
15712
0666
edit
dl
rm
testimonial-carousel-3.php
10548
0666
edit
dl
rm
testimonial-carousel.php
14241
0666
edit
dl
rm
video-button.php
7987
0666
edit
dl
rm
widgets.php
3988
0666
edit
dl
rm
Edit:
/home/techb158/public_html/wp-content/themes/engitech/inc/backend/elementor-widgets/button.php
(8489B)
<?php namespace Elementor; // Custom widgets must be defined in the Elementor namespace if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure) /** * Widget Name: Button */ class Engitech_Button extends Widget_Base{ // The get_name() method is a simple one, you just need to return a widget name that will be used in the code. public function get_name() { return 'ibutton'; } // The get_title() method, which again, is a very simple one, you need to return the widget title that will be displayed as the widget label. public function get_title() { return __( 'Engitech Button', 'engitech' ); } // The get_icon() method, is an optional but recommended method, it lets you set the widget icon. you can use any of the eicon or font-awesome icons, simply return the class name as a string. public function get_icon() { return 'eicon-button'; } // The get_categories method, lets you set the category of the widget, return the category name as a string. public function get_categories() { return [ 'category_engitech' ]; } /** * Get button sizes. * * Retrieve an array of button sizes for the button widget. * * @since 1.0.0 * @access public * @static * * @return array An array containing button sizes. */ public static function get_button_style() { return [ 'btn-main' => __( 'Normal Button', 'engitech' ), 'btn-icon' => __( 'Button With Icon', 'engitech' ), ]; } public static function get_button_color() { return [ 'primary' => __( 'Primary Color', 'engitech' ), 'second' => __( 'Second Color', 'engitech' ), 'arrow' => __( 'With Arrow', 'engitech' ), ]; } protected function _register_controls() { //Content Service box $this->start_controls_section( 'button_section', [ 'label' => __( 'Button', 'engitech' ), ] ); $this->add_control( 'btn_style', [ 'label' => __( 'Style', 'engitech' ), 'type' => Controls_Manager::SELECT, 'default' => 'primary', 'options' => self::get_button_color(), 'style_transfer' => true, ] ); $this->add_responsive_control( 'align', [ 'label' => __( 'Alignment', 'engitech' ), 'type' => Controls_Manager::CHOOSE, 'options' => [ 'left' => [ 'title' => __( 'Left', 'engitech' ), 'icon' => 'eicon-text-align-left', ], 'center' => [ 'title' => __( 'Center', 'engitech' ), 'icon' => 'eicon-text-align-center', ], 'right' => [ 'title' => __( 'Right', 'engitech' ), 'icon' => 'eicon-text-align-right', ], ], 'prefix_class' => 'elementor%s-align-', 'default' => '', ] ); $this->add_control( 'text', [ 'label' => __( 'Text', 'engitech' ), 'type' => Controls_Manager::TEXTAREA, 'default' => __( 'Click here', 'engitech' ), ] ); $this->add_control( 'link', [ 'label' => __( 'Link', 'engitech' ), 'type' => Controls_Manager::URL, 'placeholder' => __( 'https://your-link.com', 'engitech' ), 'default' => [ 'url' => '#', ], ] ); $this->end_controls_section(); //Style $this->start_controls_section( 'style_section', [ 'label' => __( 'General', 'engitech' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_responsive_control( 'button_padding', [ 'label' => __( 'Padding', 'engitech' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px' ], 'selectors' => [ '{{WRAPPER}} .octf-btn' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'button_typography', 'selector' => '{{WRAPPER}} .octf-btn', ] ); //Hover $this->start_controls_tabs( 'tabs_button_style' ); $this->start_controls_tab( 'tab_button_normal', [ 'label' => __( 'Normal', 'engitech' ), ] ); $this->add_control( 'button_text_color', [ 'label' => __( 'Text Color', 'engitech' ), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .btn-details, {{WRAPPER}} .octf-btn' => 'fill: {{VALUE}}; color: {{VALUE}};', ], ] ); $this->add_control( 'background_color', [ 'label' => __( 'Background Color', 'engitech' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .octf-btn' => 'background-color: {{VALUE}};', ], 'condition' => [ 'btn_style!' => 'arrow', ] ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'button_border', 'selector' => '{{WRAPPER}} .octf-btn', 'condition' => [ 'btn_style!' => 'arrow', ] ] ); $this->add_responsive_control( 'button_radius', [ 'label' => __( 'Border Radius', 'engitech' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', '%' ], 'selectors' => [ '{{WRAPPER}} .octf-btn' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], 'condition' => [ 'btn_style!' => 'arrow', ] ] ); $this->end_controls_tab(); $this->start_controls_tab( 'tab_button_hover', [ 'label' => __( 'Hover', 'engitech' ), ] ); $this->add_control( 'hover_color', [ 'label' => __( 'Text Color', 'engitech' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .btn-details:hover, {{WRAPPER}} .octf-btn:hover, {{WRAPPER}} .octf-btn:focus' => 'color: {{VALUE}};', ], ] ); $this->add_control( 'button_background_hover_color', [ 'label' => __( 'Background Color', 'engitech' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .octf-btn:hover, {{WRAPPER}} .octf-btn:focus' => 'background-color: {{VALUE}};', ], 'condition' => [ 'btn_style!' => 'arrow', ] ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'button_hover_border', 'selector' => '{{WRAPPER}} .octf-btn:hover', 'condition' => [ 'btn_style!' => 'arrow', ] ] ); $this->add_responsive_control( 'button_hover_radius', [ 'label' => __( 'Border Radius', 'engitech' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', '%' ], 'selectors' => [ '{{WRAPPER}} .octf-btn:hover' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], 'condition' => [ 'btn_style!' => 'arrow', ] ] ); $this->add_control( 'hover_animation', [ 'label' => __( 'Hover Animation', 'engitech' ), 'type' => Controls_Manager::HOVER_ANIMATION, 'condition' => [ 'btn_style!' => 'arrow', ] ] ); $this->end_controls_tab(); $this->end_controls_tabs(); $this->end_controls_section(); } protected function render() { $settings = $this->get_settings_for_display(); if ( ! empty( $settings['link']['url'] ) ) { $this->add_render_attribute( 'button', 'href', $settings['link']['url'] ); if ( $settings['link']['is_external'] ) { $this->add_render_attribute( 'button', 'target', '_blank' ); } if ( $settings['link']['nofollow'] ) { $this->add_render_attribute( 'button', 'rel', 'nofollow' ); } } if( $settings['btn_style'] != 'arrow' ){ $this->add_render_attribute( 'button', 'class', 'octf-btn' ); $this->add_render_attribute( 'button', 'class', 'octf-btn-'.$settings['btn_style'] ); }else{ $this->add_render_attribute( 'button', 'class', 'btn-details' ); } if ( $settings['hover_animation'] ) { $this->add_render_attribute( 'button', 'class', 'elementor-animation-' . $settings['hover_animation'] ); } ?> <div class="ot-button"> <a <?php echo $this->get_render_attribute_string( 'button' ); ?>><?php echo $settings['text']; ?></a> </div> <?php } protected function _content_template() {} } // After the Schedule class is defined, I must register the new widget class with Elementor: Plugin::instance()->widgets_manager->register_widget_type( new Engitech_Button() );
Save
cmd:
run