<?php
$slides_to_show = range( 1, 10 );
$slides_to_show = array_combine( $slides_to_show, $slides_to_show );
// Register Services List Widget
ct_add_custom_widget(
array(
'name' => 'ct_service_external',
'title' => esc_html__('Case Services External', 'itfirm'),
'icon' => 'eicon-cogs',
'categories' => array(Case_Theme_Core::CT_CATEGORY_NAME),
'scripts' => array(
'ct-inline-css-js',
'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_external/layout-image/layout1.jpg'
],
'2' => [
'label' => esc_html__('Layout 2', 'itfirm' ),
'image' => get_template_directory_uri() . '/elementor/templates/widgets/ct_service_external/layout-image/layout2.jpg'
],
],
),
),
),
array(
'name' => 'content_list',
'label' => esc_html__('Items', 'itfirm'),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'controls' => array(
array(
'name' => 'service',
'label' => esc_html__('Add Item', 'itfirm'),
'type' => \Elementor\Controls_Manager::REPEATER,
'controls' => array(
array(
'name' => 'icon_type',
'label' => esc_html__('Icon Type', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => [
'icon' => 'Icon',
'image' => 'Image',
],
'default' => 'icon',
),
array(
'name' => 'selected_icon',
'label' => esc_html__('Icon', 'itfirm' ),
'type' => \Elementor\Controls_Manager::ICONS,
'fa4compatibility' => 'icon',
'condition' => [
'icon_type' => 'icon',
],
),
array(
'name' => 'icon_image',
'label' => esc_html__( 'Icon Image', 'itfirm' ),
'type' => \Elementor\Controls_Manager::MEDIA,
'description' => esc_html__('Select image icon.', 'itfirm'),
'condition' => [
'icon_type' => 'image',
],
),
array(
'name' => 'title',
'label' => esc_html__('Title', 'itfirm'),
'type' => \Elementor\Controls_Manager::TEXT,
'label_block' => true,
),
array(
'name' => 'description',
'label' => esc_html__('Description', 'itfirm' ),
'type' => \Elementor\Controls_Manager::TEXTAREA,
'rows' => 10,
),
array(
'name' => 'btn_text',
'label' => esc_html__('Button Text', 'itfirm'),
'type' => \Elementor\Controls_Manager::TEXT,
),
array(
'name' => 'btn_link',
'label' => esc_html__('Button Link', 'itfirm'),
'type' => \Elementor\Controls_Manager::URL,
),
),
'title_field' => '{{{ title }}}',
),
),
),
array(
'name' => 'section_style_general',
'label' => esc_html__('General', 'itfirm' ),
'tab' => \Elementor\Controls_Manager::TAB_STYLE,
'condition' => [
'layout' => ['1']
],
'controls' => array(
array(
'name' => 'color_gr_from',
'label' => esc_html__('Color Gradient From', 'itfirm' ),
'type' => \Elementor\Controls_Manager::COLOR,
),
array(
'name' => 'color_gr_to',
'label' => esc_html__('Color Gradient To', 'itfirm' ),
'type' => \Elementor\Controls_Manager::COLOR,
),
),
),
array(
'name' => 'section_style_title',
'label' => esc_html__('Title', 'itfirm' ),
'tab' => \Elementor\Controls_Manager::TAB_STYLE,
'controls' => array(
array(
'name' => 'title_color',
'label' => esc_html__('Color', 'itfirm' ),
'type' => \Elementor\Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .ct-service-external .item--title' => 'color: {{VALUE}};',
],
),
array(
'name' => 'title_typography',
'type' => \Elementor\Group_Control_Typography::get_type(),
'control_type' => 'group',
'selector' => '{{WRAPPER}} .ct-service-external .item--title',
),
),
),
array(
'name' => 'section_style_description',
'label' => esc_html__('Description', 'itfirm' ),
'tab' => \Elementor\Controls_Manager::TAB_STYLE,
'controls' => array(
array(
'name' => 'description_color',
'label' => esc_html__('Color', 'itfirm' ),
'type' => \Elementor\Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .ct-service-external .item--description' => 'color: {{VALUE}};',
],
),
array(
'name' => 'description_typography',
'type' => \Elementor\Group_Control_Typography::get_type(),
'control_type' => 'group',
'selector' => '{{WRAPPER}} .ct-service-external .item--description',
),
),
),
array(
'name' => 'section_style_button',
'label' => esc_html__('Button', 'itfirm' ),
'tab' => \Elementor\Controls_Manager::TAB_STYLE,
'condition' => [
'layout' => ['2']
],
'controls' => array(
array(
'name' => 'button_typography',
'type' => \Elementor\Group_Control_Typography::get_type(),
'control_type' => 'group',
'selector' => '{{WRAPPER}} .ct-service-external .btn',
),
),
),
array(
'name' => 'section_carousel_settings',
'label' => esc_html__('Carousel Settings', 'itfirm'),
'tab' => \Elementor\Controls_Manager::TAB_SETTINGS,
'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',
'5' => '5',
'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',
'5' => '5',
'6' => '6',
],
),
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/'
);