<?php
// Post term options
$post_term_options = ct_get_grid_term_options('service');
$slides_to_show = range( 1, 10 );
$slides_to_show = array_combine( $slides_to_show, $slides_to_show );
// Register Post Carousel Widget
ct_add_custom_widget(
array(
'name' => 'ct_service_carousel',
'title' => esc_html__('Case Service Carousel', 'itfirm' ),
'icon' => 'eicon-posts-carousel',
'categories' => array( Case_Theme_Core::CT_CATEGORY_NAME ),
'scripts' => array(
'jquery-slick',
'ct-post-carousel-widget-js',
),
'params' => array(
'sections' => array(
array(
'name' => 'layout_section',
'label' => esc_html__('Layout', 'itfirm' ),
'tab' => \Elementor\Controls_Manager::TAB_LAYOUT,
'controls' => array(
array(
'name' => 'layout',
'label' => esc_html__('Templates', 'itfirm' ),
'type' => Case_Theme_Core::LAYOUT_CONTROL,
'default' => '1',
'options' => [
'1' => [
'label' => esc_html__('Layout 1', 'itfirm' ),
'image' => get_template_directory_uri() . '/elementor/templates/widgets/ct_service_carousel/layout-image/layout1.jpg'
],
'2' => [
'label' => esc_html__('Layout 2', 'itfirm' ),
'image' => get_template_directory_uri() . '/elementor/templates/widgets/ct_service_carousel/layout-image/layout2.jpg'
],
],
),
),
),
array(
'name' => 'source_section',
'label' => esc_html__('Source', 'itfirm' ),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'controls' => array(
array(
'name' => 'source',
'label' => esc_html__('Select Categories', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT2,
'multiple' => true,
'options' => $post_term_options,
),
array(
'name' => 'orderby',
'label' => esc_html__('Order By', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'default' => 'date',
'options' => [
'date' => esc_html__('Date', 'itfirm' ),
'ID' => esc_html__('ID', 'itfirm' ),
'author' => esc_html__('Author', 'itfirm' ),
'title' => esc_html__('Title', 'itfirm' ),
'rand' => esc_html__('Random', 'itfirm' ),
],
),
array(
'name' => 'order',
'label' => esc_html__('Sort Order', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'default' => 'desc',
'options' => [
'desc' => esc_html__('Descending', 'itfirm' ),
'asc' => esc_html__('Ascending', 'itfirm' ),
],
),
array(
'name' => 'limit',
'label' => esc_html__('Total items', 'itfirm' ),
'type' => \Elementor\Controls_Manager::NUMBER,
'default' => '6',
),
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 (Default: 370x300 (Width x Height)).',
'condition' => [
'layout' => ['1'],
],
),
),
),
array(
'name' => 'display_section',
'label' => esc_html__('Display Options', 'itfirm' ),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'controls' => array(
array(
'name' => 'show_title',
'label' => esc_html__('Show Title', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SWITCHER,
'default' => 'true',
),
array(
'name' => 'show_excerpt',
'label' => esc_html__('Show Excerpt', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SWITCHER,
'default' => 'true',
'condition' => [
'layout' => ['1','2'],
],
),
array(
'name' => 'num_words',
'label' => esc_html__('Number of Words', 'itfirm' ),
'type' => \Elementor\Controls_Manager::NUMBER,
'default' => 25,
'condition' => [
'show_excerpt' => 'true',
'layout' => ['1','2'],
],
'separator' => 'after',
),
array(
'name' => 'show_button',
'label' => esc_html__('Show Button Readmore', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SWITCHER,
'default' => 'true',
'condition' => [
'layout' => ['1','2'],
],
),
array(
'name' => 'button_text',
'label' => esc_html__('Button Text', 'itfirm' ),
'type' => \Elementor\Controls_Manager::TEXT,
'condition' => [
'show_button' => 'true',
'layout' => ['1','2'],
],
),
),
),
array(
'name' => 'section_carousel_settings',
'label' => esc_html__('Carousel', 'itfirm'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'controls' => array(
array(
'name' => 'ct_animate',
'label' => esc_html__('Case Animate', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => itfirm_animate(),
'default' => '',
),
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',
],
),
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',
],
),
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',
],
),
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',
'6' => '6',
],
),
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',
'6' => '6',
],
),
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',
'6' => '6',
],
),
array(
'name' => 'arrows',
'label' => esc_html__('Show Arrows', 'itfirm'),
'type' => \Elementor\Controls_Manager::SWITCHER,
'default' => 'false',
),
array(
'name' => 'dots',
'label' => esc_html__('Show Dots', 'itfirm'),
'type' => \Elementor\Controls_Manager::SWITCHER,
'default' => 'false',
),
array(
'name' => 'pause_on_hover',
'label' => esc_html__('Pause on Hover', 'itfirm'),
'type' => \Elementor\Controls_Manager::SWITCHER,
'default' => 'false',
),
array(
'name' => 'autoplay',
'label' => esc_html__('Autoplay', 'itfirm'),
'type' => \Elementor\Controls_Manager::SWITCHER,
'default' => 'false',
),
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,
'default' => 'false',
),
array(
'name' => 'speed',
'label' => esc_html__('Animation Speed', 'itfirm'),
'type' => \Elementor\Controls_Manager::NUMBER,
'default' => 500,
),
),
),
),
),
),
get_template_directory() . '/elementor/core/widgets/'
);