mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 01:39:24 +02:00
599 lines
21 KiB
PHP
599 lines
21 KiB
PHP
<?php
|
|
global $isEmbed;
|
|
$isEmbed = 1;
|
|
global $global, $config;
|
|
if (!isset($global['systemRootPath'])) {
|
|
require_once '../videos/configuration.php';
|
|
}
|
|
$global['bypassSameDomainCheck'] = 1;
|
|
User::loginFromRequestIfNotLogged();
|
|
if (!empty($_GET['evideo'])) {
|
|
$v = Video::decodeEvideo();
|
|
$evideo = $v['evideo'];
|
|
}
|
|
if (!empty($evideo)) {
|
|
$video = $v['video'];
|
|
$img = $evideo->thumbnails;
|
|
$poster = $evideo->thumbnails;
|
|
$imgw = 1280;
|
|
$imgh = 720;
|
|
$autoPlaySources = [];
|
|
$autoPlayURL = '';
|
|
$autoPlayPoster = '';
|
|
$autoPlayThumbsSprit = '';
|
|
} else {
|
|
$videos_id = getVideos_id();
|
|
if (!empty($videos_id)) {
|
|
$video = Video::getVideo($videos_id, Video::SORT_TYPE_VIEWABLE, false, false, false, true);
|
|
} elseif (!empty($_GET['videoName'])) {
|
|
$video = Video::getVideoFromCleanTitle($_GET['videoName']);
|
|
}
|
|
}
|
|
Video::unsetAddView($video['id']);
|
|
|
|
AVideoPlugin::getEmbed($video['id']);
|
|
|
|
if (empty($video)) {
|
|
$msg = __('Video not found');
|
|
if (User::isAdmin()) {
|
|
$msg = "{$msg} " . json_encode($_GET);
|
|
}
|
|
forbiddenPage($msg);
|
|
}
|
|
if ($video['status'] == 'i') {
|
|
forbiddenPage("Video inactive");
|
|
}
|
|
if (empty($video['users_id'])) {
|
|
$video['users_id'] = User::getId();
|
|
}
|
|
if (empty($customizedAdvanced)) {
|
|
$customizedAdvanced = AVideoPlugin::getObjectDataIfEnabled('CustomizeAdvanced');
|
|
}
|
|
|
|
forbiddenPageIfCannotEmbed($video['id']);
|
|
|
|
$source = [];
|
|
$img = '';
|
|
$imgw = 1280;
|
|
$imgh = 720;
|
|
|
|
if ($video['type'] !== Video::$videoTypePdf) {
|
|
if (!empty($video['filename'])) {
|
|
$source = Video::getSourceFile($video['filename']);
|
|
$poster = $img = $source['url'];
|
|
$data = getimgsize($source['path']);
|
|
$imgw = $data[0];
|
|
$imgh = $data[1];
|
|
}
|
|
}
|
|
|
|
if (empty($poster)) {
|
|
$poster = '';
|
|
if (!empty($video['filename'])) {
|
|
$images = Video::getImageFromFilename($video['filename']);
|
|
$poster = $images->poster;
|
|
if (!empty($images->posterPortrait)) {
|
|
$img = $images->posterPortrait;
|
|
$data = getimgsize($source['path']);
|
|
$imgw = $data[0];
|
|
$imgh = $data[1];
|
|
}
|
|
} else {
|
|
$images = [];
|
|
$poster = '';
|
|
$imgw = 0;
|
|
$imgh = 0;
|
|
}
|
|
if (empty($poster) && !empty($video['filename'])) {
|
|
if (($video['type'] !== "audio") && ($video['type'] !== "linkAudio")) {
|
|
$poster = "{$global['webSiteRootURL']}videos/{$video['filename']}.jpg";
|
|
} else {
|
|
$poster = ImagesPlaceHolders::getAudioLandscape(ImagesPlaceHolders::$RETURN_URL);
|
|
}
|
|
}
|
|
}
|
|
|
|
require_once $global['systemRootPath'] . 'plugin/AVideoPlugin.php';
|
|
/*
|
|
* Swap aspect ratio for rotated (vvs) videos
|
|
|
|
if ($video['rotation'] === "90" || $video['rotation'] === "270") {
|
|
$embedResponsiveClass = "embed-responsive-9by16";
|
|
$vjsClass = "vjs-9-16";
|
|
} else {
|
|
$embedResponsiveClass = "embed-responsive-16by9";
|
|
$vjsClass = "vjs-16-9";
|
|
} */
|
|
$vjsClass = '';
|
|
|
|
if(!empty($_REQUEST['showBigButton'])){
|
|
$vjsClass .= ' showBigButton';
|
|
}
|
|
|
|
$obj = new Video("", "", $video['id']);
|
|
$resp = $obj->addView();
|
|
|
|
//https://.../vEmbed/527?modestbranding=1&showinfo=0&autoplay=1&controls=0&loop=1&mute=1&t=0
|
|
$modestbranding = false;
|
|
$autoplay = false;
|
|
$controls = "controls";
|
|
$showOnlyBasicControls = false;
|
|
$hideProgressBarAndUnPause = false;
|
|
$loop = '';
|
|
$mute = '';
|
|
$objectFit = '';
|
|
$t = 0;
|
|
|
|
if (isset($_GET['modestbranding']) && $_GET['modestbranding'] == "1") {
|
|
$modestbranding = true;
|
|
}
|
|
if (!empty($_GET['autoplay']) || $config->getAutoplay()) {
|
|
$autoplay = true;
|
|
}
|
|
if (isset($_GET['controls'])) {
|
|
if ($_GET['controls'] == "0") {
|
|
$controls = '';
|
|
} elseif ($_GET['controls'] == "-1") {
|
|
$showOnlyBasicControls = true;
|
|
} elseif ($_GET['controls'] == "-2") {
|
|
$showOnlyBasicControls = true;
|
|
$hideProgressBarAndUnPause = true;
|
|
}
|
|
}
|
|
if (!empty($_GET['loop'])) {
|
|
$loop = "loop";
|
|
}
|
|
if (!empty($_GET['mute'])) {
|
|
$mute = 'muted="muted"';
|
|
}
|
|
if (!empty($_GET['objectFit']) && (intval($_GET['objectFit']) == 1 || $_GET['objectFit'] == 'true')) {
|
|
$objectFit = 'object-fit: ' . $_GET['objectFit'];
|
|
}
|
|
if (!empty($_GET['t'])) {
|
|
$t = intval($_GET['t']);
|
|
} elseif (!empty($video['progress']['lastVideoTime'])) {
|
|
$t = intval($video['progress']['lastVideoTime']);
|
|
} elseif (!empty($video['externalOptions']->videoStartSeconds)) {
|
|
$t = parseDurationToSeconds($video['externalOptions']->videoStartSeconds);
|
|
}
|
|
|
|
$playerSkinsO = AVideoPlugin::getObjectData("PlayerSkins");
|
|
$disableEmbedTopInfo = $playerSkinsO->disableEmbedTopInfo;
|
|
|
|
if (isset($_REQUEST['showinfo']) && empty($_REQUEST['showinfo'])) {
|
|
$disableEmbedTopInfo = true;
|
|
$modestbranding = true;
|
|
}
|
|
|
|
$url = Video::getLink($video['id'], $video['clean_title'], false);
|
|
$title = str_replace('"', '', $video['title']) . ' - ' . $config->getWebSiteTitle();
|
|
$photo = User::getPhoto($video['users_id']);
|
|
|
|
if (empty($currentTime)) {
|
|
$currentTime = 0;
|
|
}
|
|
|
|
if (User::hasBlockedUser($video['users_id'])) {
|
|
$disableEmbedTopInfo = true;
|
|
$video['type'] = "blockedUser";
|
|
}
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="<?php echo getLanguage(); ?>">
|
|
|
|
<head>
|
|
<meta name="robots" content="noindex">
|
|
<?php
|
|
//echo AVideoPlugin::getHeadCode();
|
|
?>
|
|
<script>
|
|
var isEmbed = true;
|
|
window.addEventListener('message', function(event) {
|
|
if (event.data === 'togglePlayerSocial' && typeof tooglePlayersocial === 'function') {
|
|
tooglePlayersocial();
|
|
}
|
|
});
|
|
</script>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="icon" href="<?php echo $config->getFavicon(); ?>">
|
|
<title><?php echo $video['title'] . $config->getPageTitleSeparator() . $config->getWebSiteTitle(); ?></title>
|
|
<link href="<?php echo getURL('view/bootstrap/css/bootstrap.min.css'); ?>" rel="stylesheet" type="text/css" />
|
|
|
|
<link href="<?php echo getURL('node_modules/video.js/dist/video-js.min.css'); ?>" rel="stylesheet" type="text/css" />
|
|
<link href="<?php echo getURL('node_modules/@fortawesome/fontawesome-free/css/all.min.css'); ?>" rel="stylesheet" type="text/css" />
|
|
|
|
<link href="<?php echo getURL('node_modules/jquery-toast-plugin/dist/jquery.toast.min.css'); ?>" rel="stylesheet" type="text/css" />
|
|
|
|
<link rel="image_src" href="<?php echo $img; ?>" />
|
|
|
|
<script src="<?php echo getURL('node_modules/jquery/dist/jquery.min.js'); ?>" type="text/javascript"></script>
|
|
<style>
|
|
body {
|
|
padding: 0 !important;
|
|
margin: 0 !important;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.video-js {
|
|
position: static;
|
|
}
|
|
|
|
#topInfo {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
min-height: 52px;
|
|
font: 12px Roboto, Arial, sans-serif;
|
|
color: #FFF;
|
|
padding: 15px;
|
|
background-image: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
#topInfo a {
|
|
color: #EEE;
|
|
text-shadow: 0 0 5px rgba(0, 0, 0, 1);
|
|
}
|
|
|
|
#topInfo a:hover {
|
|
color: #FFF;
|
|
}
|
|
|
|
#topInfo img {
|
|
float: left;
|
|
max-height: 40px;
|
|
max-width: 40px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
#topInfo div {
|
|
position: absolute;
|
|
top: 15px;
|
|
left: 0;
|
|
display: flex;
|
|
height: 40px;
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-size: 1.5em;
|
|
margin-left: 65px;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
#blockUserTop {
|
|
position: absolute;
|
|
right: 25px;
|
|
top: 25px;
|
|
}
|
|
|
|
|
|
<?php
|
|
if (empty($controls)) {
|
|
?>#topInfo,
|
|
.vjs-big-play-button,
|
|
.vjs-control-bar,
|
|
#seekBG {
|
|
display: none !important;
|
|
}
|
|
|
|
<?php
|
|
} elseif ($showOnlyBasicControls) {
|
|
?>#mainVideo>div.vjs-control-bar>.vjs-control,
|
|
#mainVideo>div.vjs-control-bar>div.vjs-time-divider {
|
|
display: none;
|
|
}
|
|
|
|
#mainVideo>div.vjs-control-bar>.vjs-play-control,
|
|
#mainVideo>div.vjs-control-bar>.vjs-fullscreen-control {
|
|
display: inline-block;
|
|
}
|
|
|
|
#mainVideo>div.vjs-control-bar>.vjs-volume-panel,
|
|
#mainVideo>div.vjs-control-bar>.vjs-progress-control,
|
|
#mainVideo>div.vjs-control-bar>.vjs-resolution-button {
|
|
display: flex;
|
|
}
|
|
|
|
<?php
|
|
if ($hideProgressBarAndUnPause) {
|
|
?>#mainVideo>div.vjs-control-bar>.vjs-progress-control,
|
|
#mainVideo>div.vjs-control-bar>button.vjs-play-control {
|
|
display: none;
|
|
}
|
|
|
|
<?php
|
|
}
|
|
}
|
|
?>#mainVideo>div.vjs-control-bar {
|
|
bottom: 0 !important;
|
|
}
|
|
|
|
#main-video,
|
|
#main-video iframe {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
<?php
|
|
include $global['systemRootPath'] . 'view/include/head.php';
|
|
getOpenGraph($video['id']);
|
|
getLdJson($video['id']);
|
|
?>
|
|
</head>
|
|
|
|
<body>
|
|
<?php
|
|
if ($video['type'] == "blockedUser") {
|
|
?>
|
|
|
|
<!-- blockedUser -->
|
|
<video id="mainVideo" style="display: none; height: 0;width: 0;"></video>
|
|
<center style="height: 100%;">
|
|
<br>
|
|
<i class="fas fa-user-slash fa-3x"></i>
|
|
<hr>
|
|
You've blocked user (<?php echo User::getNameIdentificationById($video['users_id']) ?>)<br>
|
|
You won't see any comments or videos from this user
|
|
<hr>
|
|
<?php echo User::getblockUserButton($video['users_id']); ?>
|
|
<br>
|
|
<br>
|
|
</center>
|
|
<?php
|
|
} elseif ($video['type'] == Video::$videoTypeSerie) {
|
|
?>
|
|
<!-- serie -->
|
|
<video id="mainVideo" style="display: none; height: 0;width: 0;"></video>
|
|
<iframe style="width: 100%; height: 100%;" class="embed-responsive-item" src="<?php echo $global['webSiteRootURL']; ?>plugin/PlayLists/embed.php?playlists_id=<?php
|
|
echo $video['serie_playlists_id'];
|
|
if ($config->getAutoplay()) {
|
|
echo "&autoplay=1";
|
|
}
|
|
?>"></iframe>
|
|
<script>
|
|
$(document).ready(function() {
|
|
addView(<?php echo $video['id']; ?>, 0);
|
|
});
|
|
</script>
|
|
<?php
|
|
} elseif ($video['type'] == Video::$videoTypeArticle) {
|
|
?>
|
|
<!-- article -->
|
|
<div id="main-video" class="bgWhite list-group-item ypt-article" style="max-height: 100vh; overflow: hidden; overflow-y: auto; font-size: 1.5em;">
|
|
<h1 style="font-size: 1.5em; font-weight: bold; text-transform: uppercase; border-bottom: #CCC solid 1px;">
|
|
<?php echo $video['title']; ?>
|
|
</h1>
|
|
<?php echo Video::htmlDescription($video['description']); ?>
|
|
<script>
|
|
$(document).ready(function() {
|
|
addCloseButtonInPage();
|
|
addView(<?php echo $video['id']; ?>, 0);
|
|
});
|
|
</script>
|
|
|
|
</div>
|
|
<?php
|
|
} elseif ($video['type'] == Video::$videoTypePdf) {
|
|
$sources = getVideosURLPDF($video['filename']);
|
|
?>
|
|
<!-- pdf -->
|
|
<video id="mainVideo" style="display: none; height: 0;width: 0;"></video>
|
|
<iframe style="width: 100%; height: 100%;" class="embed-responsive-item" src="<?php echo $sources["pdf"]['url']; ?>"></iframe>
|
|
<script>
|
|
$(document).ready(function() {
|
|
addCloseButtonInPage();
|
|
addView(<?php echo $video['id']; ?>, 0);
|
|
});
|
|
</script>
|
|
<?php
|
|
} elseif ($video['type'] == Video::$videoTypeImage) {
|
|
if (AVideoPlugin::isEnabledByName('ImageGallery') && !empty(ImageGallery::listFiles($video['id']))) {
|
|
?>
|
|
<!-- ImageGallery <?php echo basename(__FILE__); ?> -->
|
|
<video id="mainVideo" style="display: none; height: 0;width: 0;"></video>
|
|
<iframe style="width: 100%; height: 100%;" class="embed-responsive-item" src="<?php echo $global['webSiteRootURL']; ?>plugin/ImageGallery/?avideoIframe=1&videos_id=<?php echo $video['id']; ?>"></iframe>
|
|
<script>
|
|
$(document).ready(function() {
|
|
addView(<?php echo $video['id']; ?>, 0);
|
|
});
|
|
</script>
|
|
<?php
|
|
}else{
|
|
$sources = getVideosURLIMAGE($video['filename']);
|
|
?>
|
|
<!-- image -->
|
|
<img src="<?php
|
|
echo $sources["image"]['url']
|
|
?>" class="img img-responsive center-block" style="height: 100%;">
|
|
<script>
|
|
$(document).ready(function() {
|
|
addCloseButtonInPage();
|
|
addView(<?php echo $video['id']; ?>, 0);
|
|
});
|
|
</script>
|
|
<?php
|
|
}
|
|
} elseif ($video['type'] == Video::$videoTypeZip) {
|
|
$sources = getVideosURLZIP($video['filename']);
|
|
?>
|
|
<!-- zip -->
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading"><i class="far fa-file-archive"></i> <?php echo $video['title']; ?></div>
|
|
<div class="panel-body">
|
|
<ul class="list-group">
|
|
<?php
|
|
$za = new ZipArchive();
|
|
$za->open($sources['zip']["path"]);
|
|
for ($i = 0; $i < $za->numFiles; $i++) {
|
|
$stat = $za->statIndex($i);
|
|
$fname = basename($stat['name']);
|
|
?>
|
|
<li class="list-group-item" style="text-align: left;"><i class="<?php echo fontAwesomeClassName($fname) ?>"></i> <?php echo $fname; ?></li>
|
|
<?php }
|
|
?>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
} elseif ($video['type'] == Video::$videoTypeEmbed) {
|
|
$isVideoTypeEmbed = 1;
|
|
?>
|
|
<!-- embed <?php echo basename(__FILE__); ?> -->
|
|
<video id="mainVideo" style="display: none; height: 0;width: 0;"></video>
|
|
<iframe style="width: 100%; height: 100%;" class="embed-responsive-item" src="<?php
|
|
$url = parseVideos($video['videoLink']);
|
|
if ($autoplay) {
|
|
$url = addQueryStringParameter($url, 'autoplay', 1);
|
|
}
|
|
echo $url;
|
|
?>"></iframe>
|
|
<script>
|
|
$(document).ready(function() {
|
|
addView(<?php echo $video['id']; ?>, 0);
|
|
});
|
|
</script>
|
|
<?php
|
|
} elseif ($video['type'] == Video::$videoTypeAudio && !file_exists(Video::getPathToFile("{$video['filename']}.mp4"))) {
|
|
$isAudio = 1;
|
|
?>
|
|
<!-- audio videoEmbed -->
|
|
<audio style="width: 100%; height: 100%;" id="mainVideo" <?php echo $controls; ?> <?php echo $loop; ?> class="center-block video-js vjs-default-skin vjs-big-play-centered" id="mainVideo" data-setup='{ "fluid": true }' poster="<?php echo $poster; ?>">
|
|
<?php echo getSources($video['filename']); ?>
|
|
</audio>
|
|
<script>
|
|
<?php PlayerSkins::playerJSCodeOnLoad($video['id']); ?>
|
|
</script>
|
|
<?php
|
|
} elseif ($video['type'] == Video::$videoTypeLinkVideo || $video['type'] == "liveLink") {
|
|
$t = ['id' => $_GET['link']];
|
|
?>
|
|
<!-- videoLink include liveVideo.php [<?php echo $_GET['link']; ?>] -->
|
|
<?php
|
|
include_once $global['systemRootPath'] . 'plugin/LiveLinks/view/liveVideo.php';
|
|
if ($video['type'] == "liveLink") {
|
|
echo getLiveUsersLabelHTML();
|
|
}
|
|
?>
|
|
<script>
|
|
<?php PlayerSkins::playerJSCodeOnLoad($video['id']); ?>
|
|
</script>
|
|
<?php
|
|
} else {
|
|
?>
|
|
<!-- else -->
|
|
<video style="width: 100%; height: 100%; position: fixed; top: 0; left:0; <?php echo $objectFit; ?>" <?php echo PlayerSkins::getPlaysinline(); ?> poster="<?php echo $poster; ?>" <?php echo $controls; ?> <?php echo $loop; ?> <?php echo $mute; ?> class="video-js vjs-default-skin vjs-big-play-centered <?php echo $vjsClass; ?> " id="mainVideo">
|
|
<?php echo getSources($video['filename']); ?>
|
|
<p><?php echo __("If you can't view this video, your browser does not support HTML5 videos"); ?></p>
|
|
</video>
|
|
<script>
|
|
<?php PlayerSkins::playerJSCodeOnLoad($video['id']); ?>
|
|
</script>
|
|
<?php
|
|
//exit;
|
|
}
|
|
if (empty($disableEmbedTopInfo)) {
|
|
?>
|
|
<div id="topInfoTemplate" class="hideOnPlayerUserInactive" style="display: none;">
|
|
<a href="<?php echo $url; ?>" target="_blank">
|
|
<img src="<?php echo $photo; ?>" class="img img-responsive img-circle" style="" alt="User Photo">
|
|
<div class="topInfoTitle">
|
|
<?php echo $title; ?>
|
|
</div>
|
|
</a>
|
|
<span id="blockUserTop">
|
|
<?php echo User::getblockUserButton($video['users_id']); ?>
|
|
</span>
|
|
</div>
|
|
<?php
|
|
}
|
|
?>
|
|
<?php
|
|
include $global['systemRootPath'] . 'view/include/video.min.js.php';
|
|
?>
|
|
<?php
|
|
echo AVideoPlugin::afterVideoJS();
|
|
$jsFiles = [];
|
|
$jsFiles[] = "view/js/BootstrapMenu.min.js";
|
|
$jsFiles[] = "node_modules/sweetalert/dist/sweetalert.min.js";
|
|
//$jsFiles[] = "view/js/bootgrid/jquery.bootgrid.js";
|
|
//$jsFiles[] = "view/bootstrap/bootstrapSelectPicker/js/bootstrap-select.min.js";
|
|
$jsFiles[] = "view/js/script.js";
|
|
$jsFiles[] = "view/js/addView.js";
|
|
$jsFiles[] = "node_modules/js-cookie/dist/js.cookie.js";
|
|
//$jsFiles[] = "view/css/flagstrap/js/jquery.flagstrap.min.js";
|
|
$jsFiles[] = "node_modules/jquery-lazy/jquery.lazy.min.js";
|
|
$jsFiles[] = "node_modules/jquery-lazy/jquery.lazy.plugins.min.js";
|
|
$jsFiles[] = "node_modules/jquery-toast-plugin/dist/jquery.toast.min.js";
|
|
$jsFiles[] = "plugin/PlayerSkins/shareButton.js";
|
|
|
|
|
|
?>
|
|
<?php
|
|
include $global['systemRootPath'] . 'view/include/bootstrap.js.php';
|
|
?>
|
|
<?php
|
|
//echo combineFilesHTML($jsFiles, "js");
|
|
foreach ($jsFiles as $key => $value) {
|
|
echo getTagIfExists($value);
|
|
}
|
|
include $global['systemRootPath'] . 'view/include/moment.js.php';
|
|
echo AVideoPlugin::getFooterCode();
|
|
include $global['systemRootPath'] . 'plugin/PlayerSkins/contextMenu.php';
|
|
?>
|
|
<script src="<?php echo getURL('node_modules/jquery-ui-dist/jquery-ui.min.js'); ?>" type="text/javascript"></script>
|
|
<script>
|
|
var topInfoTimeout;
|
|
|
|
$(document).ready(function() {
|
|
addCloseButtonInVideo(<?php echo json_encode(!empty($_REQUEST['forceCloseButton'])); ?>);
|
|
$("iframe").mouseout(function(e) {
|
|
topInfoTimeout = setTimeout(function() {
|
|
$('#mainVideo').removeClass("vjs-user-active");
|
|
}, 500);
|
|
});
|
|
<?php
|
|
if (!empty($_REQUEST['closeOnEnd'])) {
|
|
?>
|
|
player.on('ended', function() {
|
|
$('#CloseButtonInVideo').trigger('click');
|
|
});
|
|
<?php
|
|
}
|
|
if ($hideProgressBarAndUnPause) {
|
|
?>
|
|
player.on('pause', function() {
|
|
player.play();
|
|
});
|
|
<?php
|
|
}
|
|
if (empty($disableEmbedTopInfo)) {
|
|
?>
|
|
|
|
player.ready(function() {
|
|
var clonedElement = $('#topInfoTemplate').clone();
|
|
clonedElement.css('display', '');
|
|
clonedElement.attr('id', 'topInfo');
|
|
$(player.el()).append(clonedElement);
|
|
});
|
|
<?php
|
|
|
|
}
|
|
?>
|
|
|
|
});
|
|
</script>
|
|
<?php
|
|
showCloseButton();
|
|
?>
|
|
</body>
|
|
|
|
</html>
|
|
|
|
<?php
|
|
include $global['systemRootPath'] . 'objects/include_end.php';
|
|
?>
|