Файловый менеджер - Редактировать - /home/tuudkjt/globeasy/wp-content/plugins/ova-events/elementor/widgets/ovaev-events-slide.php
Назад
<?php namespace ova_ovaev_elementor\Widgets; use Elementor\Widget_Base; use Elementor\Controls_Manager; use Elementor\Scheme_Typography; use Elementor\Group_Control_Typography; use Elementor\Scheme_Color; use Elementor\Group_Control_Border; if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly class ova_events_slide extends Widget_Base { public function get_name() { return 'ova_events_slide'; } public function get_title() { return esc_html__( 'Events Slide', 'ovaev' ); } public function get_icon() { return 'eicon-slider-album'; } public function get_categories() { return [ 'ovatheme' ]; } public function get_script_depends() { wp_enqueue_style( 'carousel', OVAEV_PLUGIN_URI.'assets/libs/owl-carousel/assets/owl.carousel.min.css' ); wp_enqueue_script( 'carousel', OVAEV_PLUGIN_URI.'assets/libs/owl-carousel/owl.carousel.min.js', array('jquery'), false, true ); return [ 'script-elementor' ]; } protected function register_controls() { $args = array( 'taxonomy' => 'event_category', 'orderby' => 'name', 'order' => 'ASC' ); $categories = get_categories($args); $category_all = array( 'all' => 'All categories'); $category_data = array(); if ($categories) { foreach ( $categories as $cate ) { $category_data[$cate->slug] = $cate->cat_name; } } else { $category_data["No content Category found"] = 0; } $this->start_controls_section( 'section_content', [ 'label' => esc_html__( 'Content', 'ovaev' ), ] ); $this->add_control( 'category', [ 'label' => esc_html__( 'Category', 'ovaev' ), 'type' => Controls_Manager::SELECT, 'default' => 'all', 'options' => array_merge( $category_all, $category_data ) ] ); $this->add_control( 'layout', [ 'label' => esc_html__('Layout', 'ovaev'), 'type' => Controls_Manager::SELECT, 'options' => [ '1' => esc_html__('Layout 1','ovaev'), '2' => esc_html__('Layout 2','ovaev'), ], 'default' => '1', ] ); $this->add_control( 'total_count', [ 'label' => esc_html__( 'Post Total', 'ovaev' ), 'type' => Controls_Manager::NUMBER, 'min' => 1, 'default' => 8, ] ); $this->add_control( 'time_event', [ 'label' => esc_html__('Choose time', 'ovaev'), 'type' => Controls_Manager::SELECT, 'options' => [ '' => esc_html__('All','ovaev'), 'current' => esc_html__('Current','ovaev'), 'upcoming' => esc_html__('Upcoming','ovaev'), 'past' => esc_html__('Past','ovaev'), ], 'default' => '', ] ); $this->add_control( 'column', [ 'label' => esc_html__('Column','ovaev'), 'type' => Controls_Manager::SELECT, 'default' => 'two_column', 'options' => [ 'two_column' => esc_html__('Two Columns', 'ovaev'), 'three_column' => esc_html__('Three Columns', 'ovaev'), ], 'condition' => [ 'version' => 'version_2' ], ] ); $this->add_control( 'order_by', [ 'label' => esc_html__( 'Order By', 'ovaev' ), 'type' => Controls_Manager::SELECT, 'default' => 'title', 'options' => [ 'title' => esc_html__( 'Title', 'ovaev' ), 'event_custom_sort' => esc_html__( 'Custom Sort', 'ovaev' ), 'ovaev_start_date_time' => esc_html__( 'Start Date', 'ovaev' ), 'ID' => esc_html__( 'ID', 'ovaev' ), ], ] ); $this->add_control( 'order', [ 'label' => esc_html__( 'Order', 'ovaev' ), 'type' => Controls_Manager::SELECT, 'default' => 'DESC', 'options' => [ 'DESC' => esc_html__( 'Descending', 'ovaev' ), 'ASC' => esc_html__( 'Ascending', 'ovaev' ), ], ] ); $this->end_controls_section(); $this->start_controls_section( 'section_additional_options', [ 'label' => esc_html__( 'Additional Options', 'ovaev' ), ] ); /*************************** VERSION 1 ***********************/ $this->add_control( 'margin_items', [ 'label' => esc_html__( 'Margin Right Items', 'ovaev' ), 'type' => Controls_Manager::NUMBER, 'default' => 30, ] ); $this->add_control( 'item_number', [ 'label' => esc_html__( 'Item Number', 'ovaev' ), 'type' => Controls_Manager::NUMBER, 'description' => esc_html__( 'Number Item', 'ovaev' ), 'default' => 3, ] ); $this->add_control( 'slides_to_scroll', [ 'label' => esc_html__( 'Slides to Scroll', 'ovaev' ), 'type' => Controls_Manager::NUMBER, 'description' => esc_html__( 'Set how many slides are scrolled per swipe.', 'ovaev' ), 'default' => 1, ] ); $this->add_control( 'pause_on_hover', [ 'label' => esc_html__( 'Pause on Hover', 'ovaev' ), 'type' => Controls_Manager::SWITCHER, 'default' => 'yes', 'options' => [ 'yes' => esc_html__( 'Yes', 'ovaev' ), 'no' => esc_html__( 'No', 'ovaev' ), ], 'frontend_available' => true, ] ); $this->add_control( 'infinite', [ 'label' => esc_html__( 'Infinite Loop', 'ovaev' ), 'type' => Controls_Manager::SWITCHER, 'default' => 'yes', 'options' => [ 'yes' => esc_html__( 'Yes', 'ovaev' ), 'no' => esc_html__( 'No', 'ovaev' ), ], 'frontend_available' => true, ] ); $this->add_control( 'autoplay', [ 'label' => esc_html__( 'Autoplay', 'ovaev' ), 'type' => Controls_Manager::SWITCHER, 'default' => 'yes', 'options' => [ 'yes' => esc_html__( 'Yes', 'ovaev' ), 'no' => esc_html__( 'No', 'ovaev' ), ], 'frontend_available' => true, ] ); $this->add_control( 'autoplay_speed', [ 'label' => esc_html__( 'Autoplay Speed', 'ovaev' ), 'type' => Controls_Manager::NUMBER, 'default' => 3000, 'step' => 500, 'condition' => [ 'autoplay' => 'yes', ], 'frontend_available' => true, ] ); $this->add_control( 'smartspeed', [ 'label' => esc_html__( 'Smart Speed', 'ovaev' ), 'type' => Controls_Manager::NUMBER, 'default' => 500, ] ); $this->add_control( 'dot_control', [ 'label' => esc_html__( 'Show Dots', 'ovaev' ), 'type' => Controls_Manager::SWITCHER, 'default' => 'no', 'options' => [ 'yes' => esc_html__( 'Yes', 'ovaev' ), 'no' => esc_html__( 'No', 'ovaev' ), ], 'frontend_available' => true, ] ); $this->add_control( 'nav_control', [ 'label' => esc_html__( 'Show Nav', 'ovaev' ), 'type' => Controls_Manager::SWITCHER, 'default' => 'yes', 'options' => [ 'yes' => esc_html__( 'Yes', 'ovaev' ), 'no' => esc_html__( 'No', 'ovaev' ), ], 'frontend_available' => true, ] ); $this->end_controls_section(); } protected function render() { $settings = $this->get_settings(); $template = apply_filters( 'elementor_ovaev_slide', 'elements/ovaev_events_slide.php' ); ob_start(); ovaev_get_template( $template, $settings ); echo ob_get_clean(); } }
| ver. 1.6 |
Github
|
.
| PHP 8.1.34 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка