File: /home/zwafgyp/dodolodge-net/wp-content/themes/hotel-wp/inc/widgets/video/class-el-video.php
<?php
/**
* Thim_Builder Elementor Video widget
*
* @version 1.0.0
* @author ThimPress
* @package Thim_Builder/Classes
* @category Classes
* @author Thimpress, tuanta
*/
/**
* Prevent loading this file directly
*/
defined( 'ABSPATH' ) || exit;
if ( ! class_exists( 'Thim_Builder_El_Video' ) ) {
/**
* Class Thim_Builder_El_Video
*/
class Thim_Builder_El_Video extends Thim_Builder_El_Widget {
/**
* @var string
*/
protected $config_class = 'Thim_Builder_Config_Video';
/**
* Register controls.
*/
protected function _register_controls() {
$this->start_controls_section(
'el-video', [ 'label' => esc_html__( 'Thim: Video', 'hotel-wp' ) ]
);
$controls = \Thim_Builder_El_Mapping::mapping( $this->options() );
foreach ( $controls as $key => $control ) {
$this->add_control( $key, $control );
}
$this->end_controls_section();
}
}
}