Файловый менеджер - Редактировать - /home/adiggxhn/gruposmartbusiness.com/wp-content336/themes/maxbizz/inc/backend/elementor/widgets/pricing-table.php
Ðазад
<?php namespace Elementor; // Custom widgets must be defined in the Elementor namespace if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly (security measure) /** * Widget Name: Pricing Table */ class Maxbizz_Pricing_Table 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 'ipricingtable'; } // 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 __( 'OT Pricing Table', 'maxbizz' ); } // 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-price-table'; } // 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_maxbizz' ]; } protected function register_controls() { //Content Service box $this->start_controls_section( 'content_section', [ 'label' => __( 'Pricing Table', 'maxbizz' ), ] ); $this->add_control( 'is_featured', [ 'label' => __( 'Pricing Table Featured', 'maxbizz' ), 'type' => Controls_Manager::SWITCHER, 'label_on' => __( 'Yes', 'maxbizz' ), 'label_off' => __( 'No', 'maxbizz' ), 'return_value' => 'yes', 'default' => '', ] ); $this->add_control( 'title', [ 'label' => __( 'Title', 'maxbizz' ), 'type' => Controls_Manager::TEXT, 'default' => __( 'Standard', 'maxbizz' ), 'label_block' => true, ] ); $this->add_control( 'price', [ 'label' => __( 'Price', 'maxbizz' ), 'type' => Controls_Manager::TEXTAREA, 'default' => __( '<sup>$</sup> 29', 'maxbizz' ), 'label_block' => true, ] ); $this->add_control( 'price_for', [ 'label' => __( 'Text Under Price', 'maxbizz' ), 'type' => Controls_Manager::TEXT, 'default' => __( 'per m2', 'maxbizz' ), 'label_block' => true, ] ); $this->add_control( 'short_text', [ 'label' => 'Short Text', 'type' => Controls_Manager::TEXTAREA, 'default' => __( 'Discover the emerging technologies most relevant to your strategy by working.', 'maxbizz' ), ] ); $this->add_control( 'details', [ 'label' => 'Details', 'type' => Controls_Manager::TEXTAREA, 'default' => __( '<ul><li class="active">Structure of a project</li><li class="active">Measurement of the room</li><li>3D-Visualization of premises</li></ul>', 'maxbizz' ), ] ); $this->add_control( 'label_link', [ 'label' => 'Button', 'type' => Controls_Manager::TEXTAREA, 'default' => __( 'Choose Plane', 'maxbizz' ), ] ); $this->add_control( 'link', [ 'label' => __( 'Link', 'maxbizz' ), 'type' => Controls_Manager::URL, 'placeholder' => __( 'https://your-link.com', 'maxbizz' ), 'condition' => [ 'label_link!' => '', ], ] ); $this->end_controls_section(); //Style $this->start_controls_section( 'style_table_section', [ 'label' => __( 'Table', 'maxbizz' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_responsive_control( 'box_padding', [ 'label' => __( 'Padding Box', 'maxbizz' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', 'em', '%' ], 'selectors' => [ '{{WRAPPER}} .inner-table' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_control( 'radius_box', [ 'label' => __( 'Border Radius', 'maxbizz' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', '%' ], 'selectors' => [ '{{WRAPPER}} .ot-pricing-table' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_control( 'bg_box', [ 'label' => __( 'Background', 'maxbizz' ), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .inner-table' => 'background: {{VALUE}};', ] ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'box_border', 'selector' => '{{WRAPPER}} .inner-table', ] ); $this->add_group_control( Group_Control_Box_Shadow::get_type(), [ 'name' => 'ibox_box_shadow', 'selector' => '{{WRAPPER}} .ot-pricing-table', 'separator' => 'before', ] ); $this->end_controls_section(); $this->start_controls_section( 'style_content_section', [ 'label' => __( 'Content', 'maxbizz' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); //Title $this->add_control( 'heading_title', [ 'label' => __( 'Title', 'maxbizz' ), 'type' => Controls_Manager::HEADING, 'separator' => 'before', ] ); $this->add_responsive_control( 'title_spacing', [ 'label' => __( 'Spacing', 'maxbizz' ), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => 0, 'max' => 100, ], ], 'selectors' => [ '{{WRAPPER}} .ot-pricing-table .title-table' => 'margin-bottom: {{SIZE}}{{UNIT}};', ], ] ); $this->add_control( 'title_color', [ 'label' => __( 'Color', 'maxbizz' ), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .title-table span' => 'color: {{VALUE}};', ] ] ); $this->add_control( 'title_bgcolor', [ 'label' => __( 'Background', 'maxbizz' ), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .title-table span' => 'background: {{VALUE}};', ] ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'title_typography', 'selector' => '{{WRAPPER}} .title-table span', ] ); //Price $this->add_control( 'heading_price', [ 'label' => __( 'Price', 'maxbizz' ), 'type' => Controls_Manager::HEADING, 'separator' => 'before', ] ); $this->add_responsive_control( 'price_space', [ 'label' => __( 'Spacing', 'maxbizz' ), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => 0, 'max' => 100, ], ], 'selectors' => [ '{{WRAPPER}} .ot-pricing-table h2, {{WRAPPER}} .inner-table > p' => 'margin-bottom: {{SIZE}}{{UNIT}};', ], ] ); $this->add_control( 'price_color', [ 'label' => __( 'Color', 'maxbizz' ), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .ot-pricing-table h2' => 'color: {{VALUE}};', ] ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'price_typography', 'selector' => '{{WRAPPER}} .ot-pricing-table h2', ] ); //Under Price $this->add_control( 'heading_price_for', [ 'label' => __( 'Under Price', 'maxbizz' ), 'type' => Controls_Manager::HEADING, 'separator' => 'before', ] ); $this->add_control( 'price_for_color', [ 'label' => __( 'Color', 'maxbizz' ), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .inner-table > p' => 'color: {{VALUE}};', '{{WRAPPER}} .inner-table > p:before' => 'background: {{VALUE}};', ] ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'price_for_typography', 'selector' => '{{WRAPPER}} .inner-table > p', ] ); //Short Text $this->add_control( 'heading_stext', [ 'label' => __( 'Short Text', 'maxbizz' ), 'type' => Controls_Manager::HEADING, 'separator' => 'before', ] ); $this->add_responsive_control( 'stext_spacing', [ 'label' => __( 'Spacing', 'maxbizz' ), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => 0, 'max' => 100, ], ], 'selectors' => [ '{{WRAPPER}} .ot-pricing-table .short-text' => 'margin-bottom: {{SIZE}}{{UNIT}};', ], ] ); $this->add_control( 'stext_color', [ 'label' => __( 'Color', 'maxbizz' ), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .ot-pricing-table .short-text' => 'color: {{VALUE}};', ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'stext_typography', 'selector' => '{{WRAPPER}} .ot-pricing-table .short-text', ] ); //Details $this->add_control( 'heading_des', [ 'label' => __( 'Details', 'maxbizz' ), 'type' => Controls_Manager::HEADING, 'separator' => 'before', ] ); $this->add_responsive_control( 'des_padding', [ 'label' => __( 'Spacing', 'maxbizz' ), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => 0, 'max' => 100, ], ], 'selectors' => [ '{{WRAPPER}} .ot-pricing-table .details' => 'padding: {{SIZE}}{{UNIT}} 0;', ], ] ); $this->add_control( 'des_border_color', [ 'label' => __( 'Line Color', 'maxbizz' ), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .ot-pricing-table .details' => 'border-color: {{VALUE}};', ], ] ); $this->add_control( 'des_color', [ 'label' => __( 'Color', 'maxbizz' ), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .ot-pricing-table .details ul li' => 'color: {{VALUE}};', ], ] ); $this->add_control( 'des_active_color', [ 'label' => __( 'Active Color', 'maxbizz' ), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .ot-pricing-table .details ul li.active' => 'color: {{VALUE}};', ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'des_typography', 'selector' => '{{WRAPPER}} .ot-pricing-table .details', ] ); $this->add_control( 'icon_list', [ 'label' => __( 'Icon List', 'maxbizz' ), 'type' => Controls_Manager::SWITCHER, 'label_on' => __( 'Yes', 'maxbizz' ), 'label_off' => __( 'No', 'maxbizz' ), 'return_value' => 'yes', 'default' => 'yes', ] ); //Button $this->add_control( 'heading_btn', [ 'label' => __( 'Button', 'maxbizz' ), 'type' => Controls_Manager::HEADING, 'separator' => 'before', 'condition' => [ 'label_link!' => '', ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'btn_typography', 'selector' => '{{WRAPPER}} .ot-pricing-table .octf-btn', 'condition' => [ 'label_link!' => '', ], ] ); $this->start_controls_tabs( 'tabs_btn_style' ); $this->start_controls_tab( 'tab_btn_normal', [ 'label' => __( 'Normal', 'maxbizz' ), 'condition' => [ 'label_link!' => '', ], ] ); $this->add_control( 'btn_bg_color', [ 'label' => __( 'Background Color', 'maxbizz' ), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .ot-pricing-table .octf-btn' => 'background: {{VALUE}};', ], 'condition' => [ 'label_link!' => '', ], ] ); $this->add_control( 'btn_color', [ 'label' => __( 'Color', 'maxbizz' ), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .ot-pricing-table .octf-btn' => 'color: {{VALUE}};', ], 'condition' => [ 'label_link!' => '', ], ] ); $this->add_control( 'btn_bcolor', [ 'label' => __( 'Border Color', 'maxbizz' ), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .ot-pricing-table .octf-btn' => 'border-color: {{VALUE}};', ], 'condition' => [ 'label_link!' => '', ], ] ); $this->end_controls_tab(); $this->start_controls_tab( 'tab_btn_hover', [ 'label' => __( 'Hover', 'maxbizz' ), 'condition' => [ 'label_link!' => '', ], ] ); $this->add_control( 'hover_btn_bg_color', [ 'label' => __( 'Background Color', 'maxbizz' ), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .ot-pricing-table .octf-btn:hover' => 'background: {{VALUE}};', ], 'condition' => [ 'label_link!' => '', ], ] ); $this->add_control( 'hover_btn_color', [ 'label' => __( 'Color', 'maxbizz' ), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .ot-pricing-table .octf-btn:hover' => 'color: {{VALUE}};', ], 'condition' => [ 'label_link!' => '', ], ] ); $this->add_control( 'hover_btn_bcolor', [ 'label' => __( 'Border Color', 'maxbizz' ), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .ot-pricing-table .octf-btn:hover' => 'border-color: {{VALUE}};', ], 'condition' => [ 'label_link!' => '', ], ] ); $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' ); } } $this->add_render_attribute( 'button', 'class', 'octf-btn octf-btn-border' ); ?> <div class="ot-pricing-table <?php if( $settings['is_featured'] ) echo 'is-featured' ?>"> <div class="layer-behind"></div> <div class="inner-table"> <?php if( $settings['title'] ){ echo '<h6 class="title-table"><span>' .esc_html( $settings['title'] ). '</span></h6>'; } ?> <?php if( $settings['price'] ){ echo '<h2>' .$settings['price']. '</h2>'; } ?> <?php if( $settings['price_for'] ){ echo '<p>'. esc_html( $settings['price_for'] ). '</p>'; } ?> <?php if( $settings['short_text'] ){ echo '<div class="short-text">'. $settings['short_text']. '</div>'; } ?> <div class="details <?php if( !$settings['icon_list'] ) echo 'no-icon'; ?>"><?php echo $settings['details']; ?></div> <?php if( $settings['label_link'] ){ echo '<a ' .$this->get_render_attribute_string( 'button' ). '>' .$settings['label_link']. '</a>'; } ?> </div> </div> <?php } } // After the Maxbizz_Pricing_Table class is defined, I must register the new widget class with Elementor: Plugin::instance()->widgets_manager->register( new Maxbizz_Pricing_Table() );
| ver. 1.1 | |
.
| PHP 8.4.21 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка