%PDF- %PDF-
Direktori : /var/www/html/higroup/1618475457800/wp-content/plugins/elementskit-lite/widgets/video/ |
Current File : /var/www/html/higroup/1618475457800/wp-content/plugins/elementskit-lite/widgets/video/video.php |
<?php namespace Elementor; use \Elementor\ElementsKit_Widget_Video_Handler as Handler; use \ElementsKit_Lite\Modules\Controls\Controls_Manager as ElementsKit_Controls_Manager; if ( ! defined( 'ABSPATH' ) ) exit; class ElementsKit_Widget_Video extends Widget_Base { use \ElementsKit_Lite\Widgets\Widget_Notice; public $base; public function __construct( $data = [], $args = null ) { parent::__construct( $data, $args ); $this->add_script_depends('magnific-popup'); } public function get_name() { return Handler::get_name(); } public function get_title() { return Handler::get_title(); } public function get_icon() { return Handler::get_icon(); } public function get_categories() { return Handler::get_categories(); } public function get_help_url() { return ''; } protected function _register_controls() { $this->start_controls_section( 'ekit_video_popup_content_section', [ 'label' => esc_html__( 'Video', 'elementskit-lite' ), 'tab' => Controls_Manager::TAB_CONTENT, ] ); $this->add_control( 'ekit_video_popup_button_style', [ 'label' => esc_html__( 'Button Style', 'elementskit-lite' ), 'type' => Controls_Manager::SELECT, 'default' => 'icon', 'options' => [ 'text' => esc_html__( 'Text', 'elementskit-lite' ), 'icon' => esc_html__( 'Icon', 'elementskit-lite' ), 'both' => esc_html__( 'Both', 'elementskit-lite' ), ], ] ); $this->add_control( 'ekit_video_popup_button_title', [ 'label' =>esc_html__( 'Button Title', 'elementskit-lite' ), 'type' => Controls_Manager::TEXT, 'label_block' => true, 'placeholder' =>esc_html__( 'Play Video', 'elementskit-lite' ), 'default' =>esc_html__( 'Play Video', 'elementskit-lite' ), 'condition' => [ 'ekit_video_popup_button_style' => ['text', 'both'] ], 'dynamic' => [ 'active' => true, ], ] ); $this->add_control( 'ekit_video_popup_button_icons__switch', [ 'label' => esc_html__('Add icon? ', 'elementskit-lite'), 'type' => Controls_Manager::SWITCHER, 'default' => 'yes', 'label_on' => esc_html__( 'Yes', 'elementskit-lite' ), 'label_off' => esc_html__( 'No', 'elementskit-lite' ), 'condition' => [ 'ekit_video_popup_button_style' => ['icon', 'both'], ] ] ); $this->add_control( 'ekit_video_popup_button_icons', [ 'label' =>esc_html__( 'Button Icon', 'elementskit-lite' ), 'type' => Controls_Manager::ICONS, 'fa4compatibility' => 'ekit_video_popup_button_icon', 'default' => [ 'value' => 'icon icon-play', 'library' => 'ekiticons', ], 'label_block' => true, 'condition' => [ 'ekit_video_popup_button_style' => ['icon', 'both'], 'ekit_video_popup_button_icons__switch' => 'yes' ] ] ); $this->add_control( 'ekit_video_popup_icon_align', [ 'label' =>esc_html__( 'Icon Position', 'elementskit-lite' ), 'type' => Controls_Manager::SELECT, 'default' => 'before', 'options' => [ 'before' =>esc_html__( 'Before', 'elementskit-lite' ), 'after' =>esc_html__( 'After', 'elementskit-lite' ), ], 'condition' => [ 'ekit_video_popup_button_style' => 'both', 'ekit_video_popup_button_icons__switch' => 'yes' ] ] ); $this->add_control( 'ekit_video_popup_video_glow', [ 'label' =>esc_html__( 'Active Glow', 'elementskit-lite' ), 'type' => Controls_Manager::SWITCHER, 'label_on' => esc_html__( 'Yes', 'elementskit-lite' ), 'label_off' => esc_html__( 'No', 'elementskit-lite' ), 'return_value' => 'yes', 'default' => 'yes', ] ); $this->add_control( 'ekit_video_popup_video_type', [ 'label' => esc_html__( 'Video Type', 'elementskit-lite' ), 'type' => Controls_Manager::SELECT, 'default' => 'youtube', 'options' => [ 'youtube'=> esc_html__( 'youtube', 'elementskit-lite' ), 'vimeo'=> esc_html__( 'vimeo', 'elementskit-lite' ), ] ] ); $this->add_control( 'ekit_video_popup_url', [ 'label' => esc_html__( 'URL to embed', 'elementskit-lite' ), 'type' => Controls_Manager::TEXT, 'input_type' => 'url', 'placeholder' => esc_html( 'https://www.youtube.com/watch?v=1MTkZPys7mU' ), 'default' => esc_html('https://www.youtube.com/watch?v=1MTkZPys7mU'), 'dynamic' => [ 'active' => true, ], ] ); //video option $this->add_control( 'ekit_video_popup_start_time', [ 'label' => esc_html__( 'Start Time', 'elementskit-lite' ), 'type' => Controls_Manager::NUMBER, 'input_type' => 'number', 'placeholder' => '', 'default' => '0', 'condition' => ['ekit_video_popup_video_type' => 'youtube' ] ] ); $this->add_control( 'ekit_video_popup_end_time', [ 'label' => esc_html__( 'End Time', 'elementskit-lite' ), 'type' => Controls_Manager::NUMBER, 'input_type' => 'number', 'placeholder' => '', 'default' => '', 'condition' => ['ekit_video_popup_video_type' => 'youtube'] ] ); $this->add_control( 'ekit_video_popup_auto_play', [ 'label' => esc_html__( 'Auto Play', 'elementskit-lite' ), 'type' => Controls_Manager::SWITCHER, 'label_on' => esc_html__( 'Yes', 'elementskit-lite' ), 'label_off' => esc_html__( 'No', 'elementskit-lite' ), 'return_value' => '1', 'default' => 'yes', ] ); $this->add_control( 'ekit_video_popup_video_mute', [ 'label' => esc_html__( 'Mute', 'elementskit-lite' ), 'type' => Controls_Manager::SWITCHER, 'label_on' => esc_html__( 'Yes', 'elementskit-lite' ), 'label_off' => esc_html__( 'No', 'elementskit-lite' ), 'return_value' => '1', 'default' => 'no', ] ); $this->add_control( 'ekit_video_popup_video_loop', [ 'label' => esc_html__( 'Loop', 'elementskit-lite' ), 'type' => Controls_Manager::SWITCHER, 'label_on' => esc_html__( 'Yes', 'elementskit-lite' ), 'label_off' => esc_html__( 'No', 'elementskit-lite' ), 'return_value' => '1', 'default' => 'no', ] ); $this->add_control( 'ekit_video_popup_video_player_control', [ 'label' => esc_html__( 'Player Control', 'elementskit-lite' ), 'type' => Controls_Manager::SWITCHER, 'label_on' => esc_html__( 'Yes', 'elementskit-lite' ), 'label_off' => esc_html__( 'No', 'elementskit-lite' ), 'return_value' => '1', 'default' => 'no', ] ); $this->add_control( 'ekit_video_popup_video_intro_title', [ 'label' => esc_html__( 'Intro Title', 'elementskit-lite' ), 'type' => Controls_Manager::SWITCHER, 'label_on' => esc_html__( 'Yes', 'elementskit-lite' ), 'label_off' =>esc_html__( 'No', 'elementskit-lite' ), 'return_value' => '1', 'default' => 'no', 'condition' => ['ekit_video_popup_video_type' => 'vimeo'] ] ); $this->add_control( 'ekit_video_popup_video_intro_portrait', [ 'label' => esc_html__( 'Intro Portrait', 'elementskit-lite' ), 'type' => Controls_Manager::SWITCHER, 'label_on' => esc_html__( 'Yes', 'elementskit-lite' ), 'label_off' => esc_html__( 'No', 'elementskit-lite' ), 'return_value' => '1', 'default' => 'no', 'condition' => ['ekit_video_popup_video_type' => 'vimeo'] ] ); $this->add_control( 'ekit_video_popup_video_intro_byline', [ 'label' => esc_html__( 'Intro Byline', 'elementskit-lite' ), 'type' => Controls_Manager::SWITCHER, 'label_on' => esc_html__( 'Yes', 'elementskit-lite' ), 'label_off' => esc_html__( 'No', 'elementskit-lite' ), 'return_value' => '1', 'default' => 'no', 'condition' => ['ekit_video_popup_video_type' => 'vimeo'] ] ); //video option $this->end_controls_section(); $this->start_controls_section( 'ekit_video_popup_style_section', [ 'label' => esc_html__( 'Style', 'elementskit-lite' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_responsive_control( 'ekit_video_popup_title_align', [ 'label' =>esc_html__( 'Alignment', 'elementskit-lite' ), 'type' => Controls_Manager::CHOOSE, 'options' => [ 'left' => [ 'title' =>esc_html__( 'Left', 'elementskit-lite' ), 'icon' => 'fa fa-align-left', ], 'center' => [ 'title' =>esc_html__( 'Center', 'elementskit-lite' ), 'icon' => 'fa fa-align-center', ], 'right' => [ 'title' =>esc_html__( 'Right', 'elementskit-lite' ), 'icon' => 'fa fa-align-right', ], 'justify' => [ 'title' =>esc_html__( 'Justified', 'elementskit-lite' ), 'icon' => 'fa fa-align-justify', ], ], 'default' => 'center', 'selectors' => [ '{{WRAPPER}} .video-content' => 'text-align: {{VALUE}};', ], ] ); // // $this->end_controls_section(); $this->start_controls_section( 'ekit_video_popup_section_style', [ 'label' =>esc_html__( 'Button Style', 'elementskit-lite' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_responsive_control( 'ekit_video_popup_text_padding', [ 'label' =>esc_html__( 'Padding', 'elementskit-lite' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', 'em', '%' ], 'selectors' => [ '{{WRAPPER}} .ekit-video-popup-btn' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_responsive_control( 'ekit_video_popup_icon_size', [ 'label' => esc_html__( 'Icon Size', 'elementskit-lite' ), 'type' => Controls_Manager::SLIDER, 'size_units' => [ 'px', '%' ], 'range' => [ 'px' => [ 'min' => 1, 'max' => 100, 'step' => 5, ], '%' => [ 'min' => 1, 'max' => 100, ], ], 'selectors' => [ '{{WRAPPER}} .ekit-video-popup-btn i' => 'font-size: {{SIZE}}{{UNIT}};', '{{WRAPPER}} .ekit-video-popup-btn svg' => 'max-width: {{SIZE}}{{UNIT}};', ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'ekit_video_popup_btn_typography', 'label' =>esc_html__( 'Typography', 'elementskit-lite' ), 'selector' => '{{WRAPPER}} .ekit-video-popup-btn', ] ); $this->add_control( 'ekit_video_popup_btn_use_height_and_width', [ 'label' => esc_html__( 'Use height width', 'elementskit-lite' ), 'type' => Controls_Manager::SWITCHER, 'label_on' => esc_html__( 'Show', 'elementskit-lite' ), 'label_off' => esc_html__( 'Hide', 'elementskit-lite' ), 'return_value' => 'yes', 'default' => 'yes', ] ); $this->add_responsive_control( 'ekit_video_popup_btn_width', [ 'label' => esc_html__( 'Width', 'elementskit-lite' ), 'type' => Controls_Manager::SLIDER, 'size_units' => [ 'px', '%' ], 'range' => [ 'px' => [ 'min' => 30, 'max' => 200, 'step' => 1, ], '%' => [ 'min' => 10, 'max' => 100, ], ], 'default' => [ 'unit' => 'px', 'size' => 60, ], 'selectors' => [ '{{WRAPPER}} .ekit-video-popup-btn' => 'width: {{SIZE}}{{UNIT}};', ], 'condition' => [ 'ekit_video_popup_btn_use_height_and_width' => 'yes' ] ] ); $this->add_responsive_control( 'ekit_video_popup_btn_height', [ 'label' => esc_html__( 'Height', 'elementskit-lite' ), 'type' => Controls_Manager::SLIDER, 'size_units' => [ 'px', '%' ], 'range' => [ 'px' => [ 'min' => 30, 'max' => 200, 'step' => 1, ], '%' => [ 'min' => 10, 'max' => 100, ], ], 'default' => [ 'unit' => 'px', 'size' => 60, ], 'selectors' => [ '{{WRAPPER}} .ekit-video-popup-btn' => 'height: {{SIZE}}{{UNIT}};', ], 'condition' => [ 'ekit_video_popup_btn_use_height_and_width' => 'yes' ] ] ); $this->add_responsive_control( 'ekit_video_popup_btn_line_height', [ 'label' => esc_html__( 'Line height', 'elementskit-lite' ), 'type' => Controls_Manager::SLIDER, 'size_units' => [ 'px', '%' ], 'range' => [ 'px' => [ 'min' => 30, 'max' => 200, 'step' => 1, ], '%' => [ 'min' => 10, 'max' => 100, ], ], 'default' => [ 'unit' => 'px', 'size' => 45, ], 'selectors' => [ '{{WRAPPER}} .ekit-video-popup-btn' => 'line-height: {{SIZE}}{{UNIT}};', ], 'condition' => [ 'ekit_video_popup_btn_use_height_and_width' => 'yes' ] ] ); $this->add_control( 'ekit_video_popup_btn_glow_color', [ 'label' => esc_html__( 'Glow Color', 'elementskit-lite' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .ekit-video-popup-btn.glow-btn:before' => 'color: {{VALUE}}', '{{WRAPPER}} .ekit-video-popup-btn.glow-btn:after' => 'color: {{VALUE}}', '{{WRAPPER}} .ekit-video-popup-btn.glow-btn > i:after' => 'color: {{VALUE}}', ], 'default' => '#255cff', 'condition' => [ 'ekit_video_popup_video_glow' => 'yes' ] ] ); $this->start_controls_tabs( 'ekit_video_popup_button_style_tabs' ); $this->start_controls_tab( 'ekit_video_popup_button_normal', [ 'label' =>esc_html__( 'Normal', 'elementskit-lite' ), ] ); $this->add_control( 'ekit_video_popup_btn_text_color', [ 'label' =>esc_html__( 'Text Color', 'elementskit-lite' ), 'type' => Controls_Manager::COLOR, 'default' => '#ffffff', 'selectors' => [ '{{WRAPPER}} .ekit-video-popup-btn' => 'color: {{VALUE}};', '{{WRAPPER}} .ekit-video-popup-btn svg path' => 'stroke: {{VALUE}}; fill: {{VALUE}};', ], ] ); $this->add_group_control( Group_Control_Background::get_type(), array( 'name' => 'ekit_video_popup_btn_bg_color', 'default' => '', 'selector' => '{{WRAPPER}} .ekit-video-popup-btn', ) ); $this->end_controls_tab(); $this->start_controls_tab( 'ekit_video_popup_btn_tab_button_hover', [ 'label' =>esc_html__( 'Hover', 'elementskit-lite' ), ] ); $this->add_control( 'ekit_video_popup_btn_hover_color', [ 'label' =>esc_html__( 'Text Color', 'elementskit-lite' ), 'type' => Controls_Manager::COLOR, 'default' => '#ffffff', 'selectors' => [ '{{WRAPPER}} .ekit-video-popup-btn:hover' => 'color: {{VALUE}};', '{{WRAPPER}} .ekit-video-popup-btn:hover svg path' => 'stroke: {{VALUE}}; fill: {{VALUE}};', ], ] ); $this->add_group_control( Group_Control_Background::get_type(), array( 'name' => 'ekit_video_popup_btn_bg_hover_color', 'default' => '', 'selector' => '{{WRAPPER}} .ekit-video-popup-btn:hover', ) ); $this->end_controls_tab(); $this->end_controls_tabs(); $this->end_controls_section(); $this->start_controls_section( 'ekit_video_popup_border_style', [ 'label' =>esc_html__( 'Border Style', 'elementskit-lite' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_control( 'ekit_video_popup_btn_border_style', [ 'label' => esc_html_x( 'Border Type', 'Border Control', 'elementskit-lite' ), 'type' => Controls_Manager::SELECT, 'options' => [ '' => esc_html__( 'None', 'elementskit-lite' ), 'solid' => esc_html_x( 'Solid', 'Border Control', 'elementskit-lite' ), 'double' => esc_html_x( 'Double', 'Border Control', 'elementskit-lite' ), 'dotted' => esc_html_x( 'Dotted', 'Border Control', 'elementskit-lite' ), 'dashed' => esc_html_x( 'Dashed', 'Border Control', 'elementskit-lite' ), 'groove' => esc_html_x( 'Groove', 'Border Control', 'elementskit-lite' ), ], 'selectors' => [ '{{WRAPPER}} .ekit-video-popup-btn' => 'border-style: {{VALUE}};', ], ] ); $this->add_control( 'ekit_video_popup_btn_border_dimensions', [ 'label' => esc_html_x( 'Width', 'Border Control', 'elementskit-lite' ), 'type' => Controls_Manager::DIMENSIONS, 'selectors' => [ '{{WRAPPER}} .ekit-video-popup-btn' => 'border-width: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->start_controls_tabs( 'ekit_video_popup__button_border_style' ); $this->start_controls_tab( 'ekit_video_popup__button_border_normal', [ 'label' =>esc_html__( 'Normal', 'elementskit-lite' ), ] ); $this->add_control( 'ekit_video_popup_btn_border_color', [ 'label' => esc_html_x( 'Color', 'Border Control', 'elementskit-lite' ), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .ekit-video-popup-btn' => 'border-color: {{VALUE}};', ], ] ); $this->end_controls_tab(); $this->start_controls_tab( 'ekit_video_popup_btn_tab_button_border_hover', [ 'label' =>esc_html__( 'Hover', 'elementskit-lite' ), ] ); $this->add_control( 'ekit_video_popup_btn_hover_border_color', [ 'label' => esc_html_x( 'Color', 'Border Control', 'elementskit-lite' ), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .ekit-video-popup-btn:hover' => 'border-color: {{VALUE}};', ], ] ); $this->end_controls_tab(); $this->end_controls_tabs(); $this->add_responsive_control( 'ekit_video_popup_btn_border_radius', [ 'label' =>esc_html__( 'Border Radius', 'elementskit-lite' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px'], 'default' => [ 'top' => '', 'right' => '', 'bottom' => '' , 'left' => '', ], 'selectors' => [ '{{WRAPPER}} .ekit-video-popup-btn, {{WRAPPER}} .ekit-video-popup-btn:before' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->end_controls_section(); $this->start_controls_section( 'ekit_video_popup_box_shadow_style', [ 'label' =>esc_html__( 'Shadow Style', 'elementskit-lite' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_group_control( Group_Control_Box_Shadow::get_type(), [ 'name' => 'ekit_video_popup_btn_box_shadow', 'label' => esc_html__( 'Box Shadow', 'elementskit-lite' ), 'selector' => '{{WRAPPER}} .ekit-video-popup-btn', ] ); $this->add_group_control( Group_Control_Text_Shadow::get_type(), [ 'name' => 'ekit_video_popup_btn_text_shadow', 'label' => esc_html__( 'Text Shadow', 'elementskit-lite' ), 'selector' => '{{WRAPPER}} .ekit-video-popup-btn', ] ); $this->end_controls_section(); $this->start_controls_section( 'ekit_video_popup_icon_style', [ 'label' => esc_html__( 'Icon', 'elementskit-lite' ), 'tab' => Controls_Manager::TAB_STYLE, 'condition' => [ 'ekit_video_popup_button_icons__switch' => 'yes', 'ekit_video_popup_button_style' => ['both'] ] ] ); $this->add_responsive_control( 'ekit_video_popup_icon_padding_right', [ 'label' => esc_html__( 'Padding Right', 'elementskit-lite' ), 'type' => Controls_Manager::SLIDER, 'size_units' => [ 'px', '%' ], 'range' => [ 'px' => [ 'min' => 0, 'max' => 200, 'step' => 1, ], '%' => [ 'min' => 0, 'max' => 100, ], ], 'default' => [ 'unit' => 'px', 'size' => 5, ], 'selectors' => [ '{{WRAPPER}} .ekit-video-popup-btn > i' => 'padding-right: {{SIZE}}{{UNIT}};', ], 'condition' => [ 'ekit_video_popup_button_style' => 'both', 'ekit_video_popup_icon_align' => 'before' ] ] ); $this->add_responsive_control( 'ekit_video_popup_icon_padding_left', [ 'label' => esc_html__( 'Padding Left', 'elementskit-lite' ), 'type' => Controls_Manager::SLIDER, 'size_units' => [ 'px', '%' ], 'range' => [ 'px' => [ 'min' => 0, 'max' => 200, 'step' => 1, ], '%' => [ 'min' => 0, 'max' => 100, ], ], 'default' => [ 'unit' => 'px', 'size' => 5, ], 'selectors' => [ '{{WRAPPER}} .ekit-video-popup-btn > i' => 'padding-left: {{SIZE}}{{UNIT}};', ], 'condition' => [ 'ekit_video_popup_button_style' => 'both', 'ekit_video_popup_icon_align' => 'after' ] ] ); $this->end_controls_section(); $this->insert_pro_message(); } /** * Video Icon */ private function video_icon() { $settings = $this->get_settings_for_display(); // new icon $migrated = isset( $settings['__fa4_migrated']['ekit_video_popup_button_icons'] ); // Check if its a new widget without previously selected icon using the old Icon control $is_new = empty( $settings['ekit_video_popup_button_icon'] ); if ( $is_new || $migrated ) { // new icon Icons_Manager::render_icon( $settings['ekit_video_popup_button_icons'], [ 'aria-hidden' => 'true' ] ); } else { ?> <i class="<?php echo esc_attr($settings['ekit_video_popup_button_icon']); ?>" aria-hidden="true"></i> <?php } } protected function render( ) { echo '<div class="ekit-wid-con" >'; $this->render_raw(); echo '</div>'; } protected function render_raw( ) { $settings = $this->get_settings_for_display(); extract($settings); $ekit_video_popup_url = $ekit_video_popup_url."?autoplay={$ekit_video_popup_auto_play}&loop={$ekit_video_popup_video_loop}&controls={$ekit_video_popup_video_player_control}&mute={$ekit_video_popup_video_mute}&start={$ekit_video_popup_start_time}&end={$ekit_video_popup_end_time}&version=3"; ?> <div class="video-content"> <a href="<?php echo esc_url($ekit_video_popup_url); ?>" class="ekit-video-popup ekit-video-popup-btn <?php echo esc_attr($ekit_video_popup_button_style == 'icon' ? 'ekit_icon_button': '') ?> <?php echo esc_attr($ekit_video_popup_video_glow=="yes"?"glow-btn":''); ?>"> <?php if($ekit_video_popup_button_style == 'text'): ?> <span><?php echo esc_html($ekit_video_popup_button_title); ?></span> <?php endif; ?> <?php if($ekit_video_popup_button_style == 'icon' && $ekit_video_popup_button_icons != ''): ?> <?php echo $this->video_icon(); ?> <?php endif; ?> <?php if($ekit_video_popup_button_style == 'both'): ?> <?php if($ekit_video_popup_icon_align == 'before' && $ekit_video_popup_button_icons != '') : ?> <?php echo $this->video_icon(); ?> <?php endif; ?> <span><?php echo esc_html($ekit_video_popup_button_title); ?></span> <?php if($ekit_video_popup_icon_align == 'after' && $ekit_video_popup_button_icons != '') : ?> <?php echo $this->video_icon(); ?> <?php endif; ?> <?php endif; ?> </a> </div> <?php } }