File: /var/www/novotecs.com/wp-content/themes/itfirm/elementor/core/register/ct_showcase.php
<?php
// Register Video Player Widget
ct_add_custom_widget(
array(
'name' => 'ct_showcase',
'title' => esc_html__('Case Showcase', 'itfirm' ),
'icon' => 'eicon-image',
'categories' => array( Case_Theme_Core::CT_CATEGORY_NAME ),
'params' => array(
'sections' => array(
array(
'name' => 'content_section',
'label' => esc_html__('Content', 'itfirm' ),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'controls' => array(
array(
'name' => 'title',
'label' => esc_html__('Title', 'itfirm' ),
'type' => \Elementor\Controls_Manager::TEXT,
),
array(
'name' => 'image',
'label' => esc_html__('Choose Image', 'itfirm' ),
'type' => \Elementor\Controls_Manager::MEDIA,
),
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' => 'btn_text',
'label' => esc_html__('Button Text 1', 'itfirm' ),
'type' => \Elementor\Controls_Manager::TEXT,
),
array(
'name' => 'btn_link',
'label' => esc_html__('Button Link 1', 'itfirm' ),
'type' => \Elementor\Controls_Manager::URL,
),
array(
'name' => 'btn_text2',
'label' => esc_html__('Button Text 2', 'itfirm' ),
'type' => \Elementor\Controls_Manager::TEXT,
),
array(
'name' => 'btn_link2',
'label' => esc_html__('Button Link 2', 'itfirm' ),
'type' => \Elementor\Controls_Manager::URL,
),
array(
'name' => 'ct_animate',
'label' => esc_html__('Case Animate', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => itfirm_animate(),
'default' => '',
),
array(
'name' => 'ct_animate_delay',
'label' => esc_html__('Animate Delay', 'itfirm' ),
'type' => \Elementor\Controls_Manager::TEXT,
'default' => '0',
'description' => 'Enter number. Default 0ms',
),
array(
'name' => 'style',
'label' => esc_html__('Style', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => [
'style1' => 'Style 1',
'style2' => 'Style 2',
],
'default' => 'style1',
),
array(
'name' => 'soon',
'label' => esc_html__('Comning Soon', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => [
'no-soon' => 'No',
'yes-soon' => 'Yes',
],
'default' => 'no-soon',
),
),
),
),
),
),
get_template_directory() . '/elementor/core/widgets/'
);