HEX
Server: Apache
System: Linux WWW 6.1.0-40-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.153-1 (2025-09-20) x86_64
User: web11 (1011)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: //var/www/biblioteka/wp-content/plugins/ultimate-post/blocks/template/video_popup.php
<?php
defined( 'ABSPATH' ) || exit;

$post_loop .= '<div class="ultp-video-modal">';
    $post_loop .= '<div class="ultp-video-modal__overlay"></div>';
    if ( $attr['vidIconEnable'] ) {
        $post_loop .= '<span class="ultp-video-close"></span>';
    }
    $post_loop .= '<div class="ultp-video-modal__Wrapper">';
        $post_loop .= '<div class="ultp-video-modal__content">';
            if ( $attr['enablePopupTitle'] ) {
                $post_loop .= '<a href="'.$titlelink.'">'.$title.'</a>';
            }
            $post_loop .= '<div class="ultp-loader-container"><div class="ultp-popup-loader"></div></div>';
            $post_loop .= $post_video ? ultimate_post()->get_embeded_video($post_video, true, true, false, true, true, false, true, array()) : '';
        $post_loop .= '</div>';
    $post_loop .= '</div>';
$post_loop .= '</div>';