<?php
$slides_to_show = range( 1, 10 );
$slides_to_show = array_combine( $slides_to_show, $slides_to_show );
// Register Gallery List Widget
ct_add_custom_widget(
array(
'name' => 'ct_gallery_carousel',
'title' => esc_html__('Case Gallery Carousel', 'itfirm'),
'icon' => 'eicon-image-before-after',
'categories' => array(Case_Theme_Core::CT_CATEGORY_NAME),
'scripts' => array(
'jquery-slick',
'ct-post-carousel-widget-js',
),
'params' => array(
'sections' => array(
array(
'name' => 'section_gallery',
'label' => esc_html__('Gallery', 'itfirm'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'controls' => array(
array(
'name' => 'image',
'label' => esc_html__('Image', 'itfirm'),
'type' => \Elementor\Controls_Manager::GALLERY,
'label_block' => true,
),
array(
'name' => 'img_size',
'label' => esc_html__('Image Size', 'itfirm' ),
'type' => \Elementor\Controls_Manager::TEXT,
'description' => 'Enter image size (Example: "thumbnail", "medium", "large", "full" or other sizes defined by theme). Alternatively enter size in pixels (Example: 200x100 (Width x Height).',
),
array(
'name' => 'style',
'label' => esc_html__('Style', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'default' => 'style1',
'options' => [
'style1' => 'Style 1',
'style2' => 'Style 2',
],
),
),
),
array(
'name' => 'section_carousel_settings',
'label' => esc_html__('Carousel Settings', 'itfirm'),
'tab' => \Elementor\Controls_Manager::TAB_SETTINGS,
'controls' => array(
array(
'name' => 'col_xs',
'label' => esc_html__('Columns XS Devices', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'default' => '1',
'options' => [
'1' => '1',
'2' => '2',
'3' => '3',
'4' => '4',
'6' => '6',
],
'condition' => [
'fade' => '',
],
),
array(
'name' => 'col_sm',
'label' => esc_html__('Columns SM Devices', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'default' => '2',
'options' => [
'1' => '1',
'2' => '2',
'3' => '3',
'4' => '4',
'6' => '6',
],
'condition' => [
'fade' => '',
],
),
array(
'name' => 'col_md',
'label' => esc_html__('Columns MD Devices', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'default' => '3',
'options' => [
'1' => '1',
'2' => '2',
'3' => '3',
'4' => '4',
'6' => '6',
],
'condition' => [
'fade' => '',
],
),
array(
'name' => 'col_lg',
'label' => esc_html__('Columns LG Devices', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'default' => '3',
'options' => [
'1' => '1',
'2' => '2',
'3' => '3',
'4' => '4',
'5' => '5',
'6' => '6',
],
'condition' => [
'fade' => '',
],
),
array(
'name' => 'col_xl',
'label' => esc_html__('Columns XL Devices', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'default' => '3',
'options' => [
'1' => '1',
'2' => '2',
'3' => '3',
'4' => '4',
'5' => '5',
'6' => '6',
],
'condition' => [
'fade' => '',
],
),
array(
'name' => 'slides_to_scroll',
'label' => esc_html__('Slides to scroll', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'default' => '1',
'options' => [
'1' => '1',
'2' => '2',
'3' => '3',
'4' => '4',
'5' => '5',
'6' => '6',
],
'condition' => [
'fade' => '',
],
),
array(
'name' => 'fade',
'label' => esc_html__('Fade', 'itfirm'),
'type' => \Elementor\Controls_Manager::SWITCHER,
),
array(
'name' => 'arrows',
'label' => esc_html__('Show Arrows', 'itfirm'),
'type' => \Elementor\Controls_Manager::SWITCHER,
),
array(
'name' => 'dots',
'label' => esc_html__('Show Dots', 'itfirm'),
'type' => \Elementor\Controls_Manager::SWITCHER,
),
array(
'name' => 'pause_on_hover',
'label' => esc_html__('Pause on Hover', 'itfirm'),
'type' => \Elementor\Controls_Manager::SWITCHER,
),
array(
'name' => 'autoplay',
'label' => esc_html__('Autoplay', 'itfirm'),
'type' => \Elementor\Controls_Manager::SWITCHER,
),
array(
'name' => 'autoplay_speed',
'label' => esc_html__('Autoplay Speed', 'itfirm'),
'type' => \Elementor\Controls_Manager::NUMBER,
'default' => 5000,
'condition' => [
'autoplay' => 'true'
]
),
array(
'name' => 'infinite',
'label' => esc_html__('Infinite Loop', 'itfirm'),
'type' => \Elementor\Controls_Manager::SWITCHER,
),
array(
'name' => 'speed',
'label' => esc_html__('Animation Speed', 'itfirm'),
'type' => \Elementor\Controls_Manager::NUMBER,
'default' => 500,
),
),
),
),
),
),
get_template_directory() . '/elementor/core/widgets/'
);