mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 17:59:55 +02:00
11 lines
No EOL
437 B
PHP
11 lines
No EOL
437 B
PHP
<?php
|
|
$video = new Video('', '', $videos_id);
|
|
if(!isValidURL($video->getTrailer1())){
|
|
echo '<!-- invalid trailer URL -->';
|
|
return false;
|
|
}
|
|
?>
|
|
|
|
<button type="button" class="btn btn-link btn-xs videoTrailerBtnLabel" onclick="avideoModalIframe('<?php echo parseVideos($video->getTrailer1(), 1); ?>');" data-toggle="tooltip" title="<?php echo __("Trailer"); ?>">
|
|
<i class="fa fa-video"></i> <?php echo __("Trailer"); ?>
|
|
</button>
|