HEX
Server: LiteSpeed
System: Linux premium235.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
User: beaupptk (733)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: /home/beaupptk/younisj.shop/wp-content/plugins/countdown-builder/assets/views/admin/tutorials.php
<?php
use ycd\AdminHelper;
global $YCD_TYPES;
$tutorialsTitles = $YCD_TYPES['tutorialsTitles'];

foreach ($YCD_TYPES['youtubeUrls'] as $videoKey => $url) {
    $title = 'Video Tutorial';

    if (!empty($tutorialsTitles[$videoKey])) {
        $title = $tutorialsTitles[$videoKey];
    }
    $embedUrl = AdminHelper::getYoutubeEmbedUrl($url);
    ?>
    <div class="current-video-section">
        <h3 style=" margin: 40px 0px 20px;"><?php echo esc_attr($title); ?></h3>
        <iframe class="current-iframe" src="<?php echo esc_attr($embedUrl);?>" style="width: 80%; height: 300px;"></iframe>
    </div>
    <?php
}