| Server IP : 38.190.208.107 / Your IP : 216.73.217.1 Web Server : nginx/1.28.1 System : Linux ht2026040333114 6.1.0-10-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.37-1 (2023-07-03) x86_64 User : root ( 0) PHP Version : 8.2.28 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv,eval,assert,passthru,system,exec,shell_exec,popen,proc_open MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/wp.9/wp-content/themes/woodmart/inc/integrations/elementor/elements/ |
Upload File : |
<?php
/**
* Slider map.
*
* @package woodmart
*/
namespace XTS\Elementor;
use Elementor\Widget_Base;
use Elementor\Controls_Manager;
use Elementor\Plugin;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Direct access not allowed.
}
/**
* Elementor widget that inserts an embeddable content into the page, from any given URL.
*
* @since 1.0.0
*/
class Slider extends Widget_Base {
/**
* Get widget name.
*
* @since 1.0.0
* @access public
*
* @return string Widget name.
*/
public function get_name() {
return 'wd_slider';
}
/**
* Get widget title.
*
* @since 1.0.0
* @access public
*
* @return string Widget title.
*/
public function get_title() {
return esc_html__( 'Slider', 'woodmart' );
}
/**
* Get widget icon.
*
* @since 1.0.0
* @access public
*
* @return string Widget icon.
*/
public function get_icon() {
return 'wd-icon-slider';
}
/**
* Get widget categories.
*
* @since 1.0.0
* @access public
*
* @return array Widget categories.
*/
public function get_categories() {
return [ 'wd-elements' ];
}
/**
* Get widget categories.
*
* @since 1.0.0
* @access public
*
* @return array Widget categories.
*/
public function get_sliders() {
$sliders = get_terms(
array(
'taxonomy' => 'woodmart_slider',
'hide_empty' => false,
)
);
$output = array(
'0' => esc_html__( 'Select', 'woodmart' ),
);
if ( is_wp_error( $sliders ) || ! $sliders ) {
return $output;
}
foreach ( $sliders as $slider ) {
$output[ $slider->slug ] = $slider->name;
}
return $output;
}
/**
* Register the widget controls.
*
* @since 1.0.0
* @access protected
*/
protected function register_controls() {
/**
* Content tab
*/
/**
* General settings
*/
$this->start_controls_section(
'general_content_section',
[
'label' => esc_html__( 'General', 'woodmart' ),
]
);
$this->add_control(
'slider',
[
'label' => esc_html__( 'Slider', 'woodmart' ),
'type' => Controls_Manager::SELECT,
'options' => $this->get_sliders(),
'default' => '0',
]
);
$this->add_control(
'carousel_sync',
array(
'label' => esc_html__( 'Synchronization', 'woodmart' ),
'type' => Controls_Manager::SELECT,
'options' => array(
'' => esc_html__( 'Disabled', 'woodmart' ),
'parent' => esc_html__( 'As parent', 'woodmart' ),
'child' => esc_html__( 'As child', 'woodmart' ),
),
'default' => '',
)
);
$this->add_control(
'sync_parent_id',
array(
'label' => esc_html__( 'ID', 'woodmart' ),
'type' => Controls_Manager::TEXT,
'default' => 'wd_' . uniqid(),
'ai' => array(
'active' => false,
),
'condition' => array(
'carousel_sync' => array( 'parent' ),
),
)
);
$this->add_control(
'sync_child_id',
array(
'label' => esc_html__( 'ID', 'woodmart' ),
'type' => Controls_Manager::TEXT,
'ai' => array(
'active' => false,
),
'condition' => array(
'carousel_sync' => array( 'child' ),
),
)
);
$this->end_controls_section();
}
/**
* 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();
$settings['elementor'] = true;
woodmart_shortcode_slider( $settings );
}
}
Plugin::instance()->widgets_manager->register( new Slider() );