<?php namespace BdevsElementor\Widget; use Elementor\Controls_Manager; use Elementor\Group_Control_Typography; use Elementor\Scheme_Typography; use Elementor\Group_Control_Border; use Elementor\Group_Control_Box_Shadow; /** * Bdevs Elementor Widget. * * Elementor widget that inserts an embbedable content into the page, from any given URL. * * @since 1.0.0 */ class BdevsVideo extends \Elementor\Widget_Base { /** * Get widget name. * * Retrieve Bdevs Elementor widget name. * * @since 1.0.0 * @access public * * @return string Widget name. */ public function get_name() { return 'bdevs-video'; } /** * Get widget title. * * Retrieve Bdevs Elementor widget title. * * @since 1.0.0 * @access public * * @return string Widget title. */ public function get_title() { return __( 'Video Home Parallax Image', 'bdevs-elementor' ); } /** * Get widget icon. * * Retrieve Bdevs Slider widget icon. * * @since 1.0.0 * @access public * * @return string Widget icon. */ public function get_icon() { return 'eicon-favorite'; } /** * Get widget categories. * * Retrieve the list of categories the Bdevs Slider widget belongs to. * * @since 1.0.0 * @access public * * @return array Widget categories. */ public function get_categories() { return [ 'pages-elementor' ]; } public function get_keywords() { return [ 'Video' ]; } public function get_script_depends() { return [ 'bdevs-elementor']; } // BDT Position protected function element_pack_position() { $position_options = [ '' => esc_html__('Default', 'bdevs-elementor'), 'top-left' => esc_html__('Top Left', 'bdevs-elementor') , 'top-center' => esc_html__('Top Center', 'bdevs-elementor') , 'top-right' => esc_html__('Top Right', 'bdevs-elementor') , 'center' => esc_html__('Center', 'bdevs-elementor') , 'center-left' => esc_html__('Center Left', 'bdevs-elementor') , 'center-right' => esc_html__('Center Right', 'bdevs-elementor') , 'bottom-left' => esc_html__('Bottom Left', 'bdevs-elementor') , 'bottom-center' => esc_html__('Bottom Center', 'bdevs-elementor') , 'bottom-right' => esc_html__('Bottom Right', 'bdevs-elementor') , ]; return $position_options; } protected function _register_controls() { $this->start_controls_section( 'section_content_Video', [ 'label' => esc_html__( 'Video', 'bdevs-elementor' ), ] ); $this->add_control( 'image', [ 'label' => esc_html__( 'Background Image', 'bdevs-elementor' ), 'type' => Controls_Manager::MEDIA, 'dynamic' => [ 'active' => true ], 'label_block' => true, 'description' => esc_html__( 'Upload Background Image', 'bdevs-elementor' ), ] ); $this->add_control( 'subheading', [ 'label' => __( 'Subheading', 'bdevs-elementor' ), 'type' => Controls_Manager::TEXT, 'placeholder' => __( 'Enter your sub heading', 'bdevs-elementor' ), 'default' => __( 'Our Agency Video', 'bdevs-elementor' ), 'label_block' => true, ] ); $this->add_control( 'heading', [ 'label' => __( 'Heading', 'bdevs-elementor' ), 'type' => Controls_Manager::TEXT, 'placeholder' => __( 'Enter your heading', 'bdevs-elementor' ), 'default' => __( 'Promo Video', 'bdevs-elementor' ), 'label_block' => true, ] ); $this->add_control( 'link_video', [ 'label' => __( 'Link Video', 'bdevs-elementor' ), 'type' => Controls_Manager::TEXT, 'placeholder' => __( 'Link Video', 'bdevs-elementor' ), 'default' => __( 'https://youtu.be/52Mw2TrcZBs', 'bdevs-elementor' ), 'label_block' => true, ] ); $this->end_controls_section(); /** * Layout section **/ $this->start_controls_section( 'section_content_layout', [ 'label' => esc_html__( 'Layout', 'bdevs-elementor' ), ] ); $this->add_responsive_control( 'align', [ 'label' => esc_html__( 'Alignment', 'bdevs-elementor' ), 'type' => Controls_Manager::CHOOSE, 'options' => [ 'left' => [ 'title' => esc_html__( 'Left', 'bdevs-elementor' ), 'icon' => 'fa fa-align-left', ], 'center' => [ 'title' => esc_html__( 'Center', 'bdevs-elementor' ), 'icon' => 'fa fa-align-center', ], 'right' => [ 'title' => esc_html__( 'Right', 'bdevs-elementor' ), 'icon' => 'fa fa-align-right', ], 'justify' => [ 'title' => esc_html__( 'Justified', 'bdevs-elementor' ), 'icon' => 'fa fa-align-justify', ], ], 'prefix_class' => 'elementor%s-align-', 'description' => 'Use align to match position', 'default' => 'left', ] ); $this->end_controls_section(); } public function render() { $settings = $this->get_settings_for_display(); extract($settings); ?> <section class="video-popup section-padding bg-img bg-fixed" data-overlay-dark="5" data-background="<?php print esc_url($settings['image']['url']); ?>"> <div class="container"> <div class="row"> <div class="col-md-12 text-center"> <?php if ( '' !== $settings['subheading'] ) : ?> <h6 class="wow" data-splitting><?php echo wp_kses_post($settings['subheading']); ?></h6> <?php endif; ?> <?php if ( '' !== $settings['heading'] ) : ?> <h1 class="wow" data-splitting><?php echo wp_kses_post($settings['heading']); ?></h1> <?php endif; ?> </div> <?php if ( '' !== $settings['link_video'] ) : ?> <div class="col-md-12 text-center"> <div class="vid-butn"> <a class="vid" href="<?php echo wp_kses_post($settings['link_video']); ?>"> <span class="icon"><i class="fa-regular fa-play"></i></span> </a> </div> </div> <?php endif; ?> </div> </div> </section> <?php if (is_admin()) { ?> <script type="text/javascript"> var pageSection = $(".bg-img, section"); pageSection.each(function (indx) { if ($(this).attr("data-background")) { $(this).css("background-image", "url(" + $(this).data("background") + ")"); } }); $("a.vid").YouTubePopUp(); </script> <?php } ?> <?php } }