Файловый менеджер - Редактировать - /home/adiggxhn/gruposmartbusiness.com/wp-content336/themes/maxbizz/inc/backend/elementor/widgets/client-logos.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: Client Logos */ class Maxbizz_Image_Carousel 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 'iclogos'; } // 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 Client Logos', '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-slider-push'; } // 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() { $this->start_controls_section( 'content_section', [ 'label' => __( 'Logos', 'maxbizz' ), ] ); $repeater = new Repeater(); $repeater->add_control( 'title', [ 'label' => __( 'Name', 'maxbizz' ), 'type' => Controls_Manager::TEXT, 'default' => __( '', 'maxbizz' ), ] ); $repeater->add_control( 'image_partner', [ 'label' => __( 'Image', 'maxbizz' ), 'type' => Controls_Manager::MEDIA, 'default' => [ 'url' => Utils::get_placeholder_image_src(), ], ] ); $repeater->add_control( 'image_link', [ 'label' => __( 'Link', 'maxbizz' ), 'type' => Controls_Manager::URL, 'default' => [], ] ); $this->add_control( 'image_carousel', [ 'label' => '', 'type' => Controls_Manager::REPEATER, 'show_label' => false, 'default' => [], 'fields' => $repeater->get_controls(), 'title_field' => '{{{title}}}', ] ); $this->add_group_control( Group_Control_Image_Size::get_type(), [ 'name' => 'image_partner_size', // Usage: `{name}_size` and `{name}_custom_dimension`, in this case `thumbnail_size` and `thumbnail_custom_dimension`. 'exclude' => ['1536x1536', '2048x2048'], 'include' => [], 'default' => 'full', ] ); $slides_show = range( 1, 10 ); $slides_show = array_combine( $slides_show, $slides_show ); $this->add_responsive_control( 'tshow', [ 'label' => __( 'Slides To Show', 'maxbizz' ), 'type' => Controls_Manager::SELECT, 'options' => [ '' => __( 'Default', 'maxbizz' ), ] + $slides_show, 'default' => '' ] ); $this->add_control( 'loop', [ 'label' => __( 'Loop', 'maxbizz' ), 'type' => Controls_Manager::SELECT, 'default' => 'true', 'options' => [ 'true' => __( 'Yes', 'maxbizz' ), 'false' => __( 'No', 'maxbizz' ), ] ] ); $this->add_control( 'autoplay', [ 'label' => __( 'Autoplay', 'maxbizz' ), 'type' => Controls_Manager::SELECT, 'default' => 'true', 'options' => [ 'true' => __( 'Yes', 'maxbizz' ), 'false' => __( 'No', 'maxbizz' ), ] ] ); $this->add_control( 'timeout', [ 'label' => __( 'Autoplay Timeout', 'maxbizz' ), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => 1000, 'max' => 20000, 'step' => 1000, ], ], 'default' => [ 'size' => 7000, ], 'condition' => [ 'autoplay' => 'true', ] ] ); $this->add_control( 'arrows', [ 'label' => __( 'Arrows', 'maxbizz' ), 'type' => Controls_Manager::SELECT, 'default' => 'false', 'options' => [ 'true' => __( 'Yes', 'maxbizz' ), 'false' => __( 'No', 'maxbizz' ), ], ] ); $this->add_control( 'dots', [ 'label' => __( 'Dots', 'maxbizz' ), 'type' => Controls_Manager::SELECT, 'default' => 'true', 'options' => [ 'true' => __( 'Yes', 'maxbizz' ), 'false' => __( 'No', 'maxbizz' ), ], ] ); $this->end_controls_section(); //Style $this->start_controls_section( 'image_style_section', [ 'label' => __( 'Style Logos', 'maxbizz' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_responsive_control( 'align', [ 'label' => __( 'Vertical Align', 'maxbizz' ), 'type' => Controls_Manager::CHOOSE, 'options' => [ 'flex-start' => [ 'title' => __( 'Top', 'maxbizz' ), 'icon' => 'eicon-v-align-top', ], 'center' => [ 'title' => __( 'Center', 'maxbizz' ), 'icon' => 'eicon-v-align-middle', ], 'flex-end' => [ 'title' => __( 'Bottom', 'maxbizz' ), 'icon' => 'eicon-v-align-bottom', ], ], 'selectors' => [ '{{WRAPPER}} .logos-carousel .owl-stage' => 'align-items: {{VALUE}};', ], ] ); $this->add_responsive_control( 'img_height', [ 'label' => __( 'Height', 'maxbizz' ), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => 0, 'max' => 100, ], ], 'default' => [ 'unit' => 'px', 'size' => 35, ], 'selectors' => [ '{{WRAPPER}} .logos-carousel .owl-item img' => 'height: {{SIZE}}{{UNIT}};', ], ] ); $this->add_responsive_control( 'img_spacing', [ 'label' => __( 'Spacing', 'maxbizz' ), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => 0, 'max' => 200, ], ], 'default' => [ 'unit' => 'px', 'size' => 70, ], ] ); $this->start_controls_tabs( 'img_effects' ); $this->start_controls_tab( 'normal', [ 'label' => __( 'Normal', 'maxbizz' ), ] ); $this->add_control( 'opacity', [ 'label' => __( 'Opacity', 'maxbizz' ), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'max' => 1, 'min' => 0.10, 'step' => 0.01, ], ], 'selectors' => [ '{{WRAPPER}} .logos-carousel .owl-item img' => 'opacity: {{SIZE}};', ], ] ); $this->add_group_control( Group_Control_Css_Filter::get_type(), [ 'name' => 'img_css_filters', 'selector' => '{{WRAPPER}} .logos-carousel .owl-item img', ] ); $this->end_controls_tab(); $this->start_controls_tab( 'img_hover_effects', [ 'label' => __( 'Hover', 'maxbizz' ), ] ); $this->add_control( 'opacity_hover', [ 'label' => __( 'Opacity', 'maxbizz' ), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'max' => 1, 'min' => 0.10, 'step' => 0.01, ], ], 'selectors' => [ '{{WRAPPER}} .logos-carousel .owl-item img:hover' => 'opacity: {{SIZE}};', ], ] ); $this->add_group_control( Group_Control_Css_Filter::get_type(), [ 'name' => 'img_css_filters_hover', 'selector' => '{{WRAPPER}} .logos-carousel .owl-item img:hover', ] ); $this->end_controls_tab(); $this->end_controls_tabs(); $this->end_controls_section(); // Dots. $this->start_controls_section( 'navigation_section', [ 'label' => __( 'Dots', 'maxbizz' ), 'tab' => Controls_Manager::TAB_STYLE, 'condition' => [ 'dots' => 'true', ], ] ); $this->add_responsive_control( 'dots_spacing', [ 'label' => __( 'Spacing', 'maxbizz' ), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => -200, 'max' => 200, ], ], 'selectors' => [ '{{WRAPPER}} .owl-dots' => 'bottom: {{SIZE}}{{UNIT}};', ], ] ); $this->add_control( 'dots_bgcolor', [ 'label' => __( 'Color', 'maxbizz' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .owl-dots button.owl-dot span' => 'background: {{VALUE}};', ], ] ); $this->add_control( 'dots_active_bgcolor', [ 'label' => __( 'Color Active', 'maxbizz' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .owl-dots button.owl-dot.active span' => 'background: {{VALUE}};', ], ] ); $this->end_controls_section(); // Arrow. $this->start_controls_section( 'style_nav', [ 'label' => __( 'Arrows', 'maxbizz' ), 'tab' => Controls_Manager::TAB_STYLE, 'condition' => [ 'arrows' => 'true', ], ] ); $this->add_control( 'arrow_color', [ 'label' => __( 'Color', 'maxbizz' ), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .owl-nav button' => 'color: {{VALUE}};', ] ] ); $this->add_control( 'arrow_hcolor', [ 'label' => __( 'Color Hover', 'maxbizz' ), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .owl-nav button:hover' => 'color: {{VALUE}};', ] ] ); $this->add_control( 'arrow_bg_color', [ 'label' => __( 'Background', 'maxbizz' ), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .owl-nav button' => 'background: {{VALUE}};', ] ] ); $this->add_control( 'arrow_bg_hcolor', [ 'label' => __( 'Background Hover', 'maxbizz' ), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .owl-nav button:hover' => 'background: {{VALUE}};', ] ] ); $this->add_control( 'radius_arrow', [ 'label' => __( 'Border Radius', 'maxbizz' ), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => 0, 'max' => 100, ], ], 'selectors' => [ '{{WRAPPER}} .owl-nav button' => 'border-radius: {{SIZE}}{{UNIT}};', ], ] ); $this->end_controls_section(); } protected function render() { $settings = $this->get_settings_for_display(); if ( empty( $settings['image_carousel'] ) ) { return; } $shows = !empty( $settings['tshow'] ) ? $settings['tshow'] : 3; $tshows = !empty( $settings['tshow_tablet'] ) ? $settings['tshow_tablet'] : $shows; $mshows = !empty( $settings['tshow_mobile'] ) ? $settings['tshow_mobile'] : $tshows; $gaps = isset( $settings['img_spacing']['size'] ) && is_numeric( $settings['img_spacing']['size'] ) ? $settings['img_spacing']['size'] : 30; $tgaps = isset( $settings['img_spacing_tablet']['size'] ) && is_numeric( $settings['img_spacing_tablet']['size'] ) ? $settings['img_spacing_tablet']['size'] : $gaps; $mgaps = isset( $settings['img_spacing_mobile']['size'] ) && is_numeric( $settings['img_spacing_mobile']['size'] ) ? $settings['img_spacing_mobile']['size'] : $tgaps; $slides = []; foreach ( $settings['image_carousel'] as $key => $attachment ) { $title = $attachment['title']; $image_url = Group_Control_Image_Size::get_attachment_image_src( $attachment['image_partner']['id'], 'image_partner_size', $settings ); $image_html = '<img src="' . esc_attr( $image_url ) . '" alt="' . esc_attr( $title ) . '">'; $link_tag = ''; if ( ! empty( $attachment['image_link']['url'] ) ) { $this->add_render_attribute( 'link' . $key, 'href', $attachment['image_link']['url'] ); if ( $attachment['image_link']['is_external'] ) { $this->add_render_attribute( 'link' . $key, 'target', '_blank' ); } if ( $attachment['image_link']['nofollow'] ) { $this->add_render_attribute( 'link' . $key, 'rel', 'nofollow' ); } $link_tag = '<a '.$this->get_render_attribute_string('link' . $key).'>'; } $slide_html = $link_tag . '<figure>' . $image_html . '</figure>'; if( $link_tag ){ $slide_html .= '</a>'; } if( $image_url ){ $slides[] = $slide_html; } } if ( empty( $slides ) ) { return; } ?> <div class="logos-carousel" data-loop="<?php echo $settings['loop']; ?>" data-auto="<?php echo $settings['autoplay']; ?>" data-time="<?php echo $settings['timeout']['size']; ?>" data-arrows="<?php echo $settings['arrows']; ?>" data-dots="<?php echo $settings['dots']; ?>" data-show="<?php echo esc_attr( $shows ); ?>" data-tshow="<?php echo esc_attr( $tshows ); ?>" data-mshow="<?php echo esc_attr( $mshows ); ?>" data-gaps="<?php echo esc_attr( $gaps ); ?>" data-tgaps="<?php echo esc_attr( $tgaps ); ?>" data-mgaps="<?php echo $mgaps; ?>"> <div class="owl-carousel owl-theme"> <?php echo implode( '', $slides ); ?> </div> </div> <?php } public function get_keywords() { return [ 'slider', 'carousel' ]; } } // After the Maxbizz_Image_Carousel class is defined, I must register the new widget class with Elementor: Plugin::instance()->widgets_manager->register( new Maxbizz_Image_Carousel() );
| ver. 1.1 | |
.
| PHP 8.4.21 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка