File: /var/www/novotecs.com/wp-content/themes/itfirm/elementor/core/register/ct_video_player.php
<?php
// Register Video Player Widget
ct_add_custom_widget(
array(
'name' => 'ct_video_player',
'title' => esc_html__('Case Video Player', 'itfirm' ),
'icon' => 'eicon-play',
'categories' => array( Case_Theme_Core::CT_CATEGORY_NAME ),
'scripts' => array(
),
'params' => array(
'sections' => array(
array(
'name' => 'icon_section',
'label' => esc_html__('Video Player', 'itfirm' ),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'controls' => array(
array(
'name' => 'image_type',
'label' => esc_html__('Image Type', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => [
'none' => 'None',
'img' => 'Image',
'bg' => 'Background',
],
'default' => 'none',
),
array(
'name' => 'image',
'label' => esc_html__('Image', 'itfirm' ),
'type' => \Elementor\Controls_Manager::MEDIA,
'condition' => [
'image_type' => ['img', 'bg'],
],
),
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).',
'condition' => [
'image_type' => 'img',
],
),
array(
'name' => 'image_height',
'label' => esc_html__('Image Height', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SLIDER,
'description' => esc_html__('Enter number.', 'itfirm' ),
'condition' => [
'image_type' => 'bg',
],
'range' => [
'px' => [
'min' => 0,
'max' => 3000,
],
],
'control_type' => 'responsive',
'selectors' => [
'{{WRAPPER}} .ct-video-player .ct-video-image-bg' => 'height: {{SIZE}}{{UNIT}};',
],
),
array(
'name' => 'video_link',
'label' => esc_html__('Link', 'itfirm' ),
'type' => \Elementor\Controls_Manager::TEXT,
),
array(
'name' => 'btn_video_style',
'label' => esc_html__('Button Video Style', 'itfirm' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => [
'style1' => 'Style 1',
'style2' => 'Style 2',
'style3' => 'Style 3',
'style4' => 'Style 4',
],
'default' => 'style1',
),
array(
'name' => 'button_text',
'label' => esc_html__('Button Video Text', 'itfirm' ),
'type' => \Elementor\Controls_Manager::TEXT,
'condition' => [
'btn_video_style' => ['style2'],
],
),
array(
'name' => 'button_text_typography',
'label' => esc_html__('Button Text Typography', 'itfirm' ),
'type' => \Elementor\Group_Control_Typography::get_type(),
'control_type' => 'group',
'selector' => '{{WRAPPER}} .ct-video-button.style2 .ct-video-text',
'condition' => [
'btn_video_style' => ['style2'],
],
),
array(
'name' => 'button_text_color',
'label' => esc_html__('Button Text Color', 'itfirm' ),
'type' => \Elementor\Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .ct-video-button.style2 .ct-video-text' => 'color: {{VALUE}};',
],
'condition' => [
'btn_video_style' => ['style2'],
],
),
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',
),
),
),
),
),
),
get_template_directory() . '/elementor/core/widgets/'
);