<?php
// Register Video Player Widget
ct_add_custom_widget(
array(
'name' => 'ct_image',
'title' => esc_html__('Case Image Single', 'consultio' ),
'icon' => 'eicon-image',
'categories' => array( Case_Theme_Core::CT_CATEGORY_NAME ),
'scripts' => array(
),
'params' => array(
'sections' => array(
array(
'name' => 'content_section',
'label' => esc_html__('Content', 'consultio' ),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'controls' => array(
array(
'name' => 'image',
'label' => esc_html__('Choose Image', 'consultio' ),
'type' => \Elementor\Controls_Manager::MEDIA,
),
array(
'name' => 'image_type',
'label' => esc_html__('Image Type', 'consultio' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => [
'img' => 'Image',
'bg' => 'Background',
],
'default' => 'img',
),
array(
'name' => 'img_size',
'label' => esc_html__('Image Size', 'consultio' ),
'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).',
'condition' => [
'image_type' => 'img',
],
),
array(
'name' => 'image_max_height',
'label' => esc_html__('Image Max Height', 'consultio' ),
'type' => \Elementor\Controls_Manager::SLIDER,
'description' => esc_html__('Enter number.', 'consultio' ),
'condition' => [
'image_type' => 'img',
],
'range' => [
'px' => [
'min' => 0,
'max' => 3000,
],
],
'control_type' => 'responsive',
'selectors' => [
'{{WRAPPER}} .ct-image-single img' => 'max-height: {{SIZE}}{{UNIT}};',
],
),
array(
'name' => 'image_max_width',
'label' => esc_html__('Image Max Width', 'consultio' ),
'type' => \Elementor\Controls_Manager::SLIDER,
'description' => esc_html__('Enter number.', 'consultio' ),
'condition' => [
'image_type' => 'img',
],
'range' => [
'px' => [
'min' => 0,
'max' => 3000,
],
],
'control_type' => 'responsive',
'selectors' => [
'{{WRAPPER}}' => 'max-width: {{SIZE}}{{UNIT}};',
],
),
array(
'name' => 'image_width',
'label' => esc_html__('Image Width', 'consultio' ),
'type' => \Elementor\Controls_Manager::CHOOSE,
'control_type' => 'responsive',
'options' => [
'auto' => [
'title' => esc_html__('Auto', 'consultio' ),
'icon' => 'fas fa-arrows-alt-v',
],
'100%' => [
'title' => esc_html__('100%', 'consultio' ),
'icon' => 'fas fa-arrows-alt-h',
],
],
'selectors' => [
'{{WRAPPER}} .ct-image-single img' => 'width: {{VALUE}};',
],
),
array(
'name' => 'image_height',
'label' => esc_html__('Image Height', 'consultio' ),
'type' => \Elementor\Controls_Manager::SLIDER,
'description' => esc_html__('Enter number.', 'consultio' ),
'condition' => [
'image_type' => 'bg',
],
'range' => [
'px' => [
'min' => 0,
'max' => 3000,
],
],
'control_type' => 'responsive',
'selectors' => [
'{{WRAPPER}} .ct-image-single, {{WRAPPER}} .ct-image-single .ct-image-bg' => 'height: {{SIZE}}{{UNIT}};',
],
),
array(
'name' => 'image_align',
'label' => esc_html__('Image Alignment', 'consultio' ),
'type' => \Elementor\Controls_Manager::CHOOSE,
'control_type' => 'responsive',
'options' => [
'left' => [
'title' => esc_html__('Case Left', 'consultio' ),
'icon' => 'eicon-text-align-left',
],
'center' => [
'title' => esc_html__('Case Center', 'consultio' ),
'icon' => 'eicon-text-align-center',
],
'right' => [
'title' => esc_html__('Case Right', 'consultio' ),
'icon' => 'eicon-text-align-right',
],
],
'selectors' => [
'{{WRAPPER}} .ct-image-single' => 'text-align: {{VALUE}};',
],
),
array(
'name' => 'image_link',
'label' => esc_html__('Link', 'consultio' ),
'type' => \Elementor\Controls_Manager::URL,
),
array(
'name' => 'img_tilt',
'label' => esc_html__('Image Parallax', 'consultio' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => [
'no' => 'No',
'yes' => 'Yes',
],
'default' => 'no',
'condition' => [
'image_type' => 'img',
],
),
array(
'name' => 'img_effect',
'label' => esc_html__('Image Effect', 'consultio' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => [
'no-effect' => 'No',
'effect1' => 'Top to Bottom',
'effect2' => 'Left to Right',
'slide-up-down' => 'Slide Up Down',
'image-zoom' => 'Zoom',
],
'default' => 'no-effect',
'condition' => [
'image_type' => 'img',
],
),
array(
'name' => 'ct_animate',
'label' => esc_html__('Case Animate', 'consultio' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => consultio_animate(),
'default' => '',
),
array(
'name' => 'ct_animate_delay',
'label' => esc_html__('Animate Delay', 'consultio' ),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => '0',
'description' => 'Enter number. Default 0ms',
),
),
),
),
),
),
get_template_directory() . '/elementor/core/widgets/'
);