mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-05 19:41:55 +02:00
190 lines
6.7 KiB
PHP
190 lines
6.7 KiB
PHP
<?php
|
|
if ($iframed) {
|
|
?>
|
|
<link rel="stylesheet" href="<?php echo Config::get('web_path'); ?>/templates/jplayer.midnight.black-iframed.css" type="text/css" />
|
|
<?php
|
|
} else {
|
|
?>
|
|
<?php require_once Config::get('prefix') . '/templates/stylesheets.inc.php'; ?>
|
|
<link rel="stylesheet" href="<?php echo Config::get('web_path'); ?>/templates/jplayer.midnight.black.css" type="text/css" />
|
|
<?php
|
|
}
|
|
?>
|
|
<script src="<?php echo Config::get('web_path'); ?>/modules/jquery/jquery.min.js" language="javascript" type="text/javascript"></script>
|
|
<script src="<?php echo Config::get('web_path'); ?>/modules/jquery/jquery.cookie.js" language="javascript" type="text/javascript"></script>
|
|
<script src="<?php echo Config::get('web_path'); ?>/modules/jplayer/jquery.jplayer.min.js" language="javascript" type="text/javascript"></script>
|
|
<script src="<?php echo Config::get('web_path'); ?>/modules/jplayer/jplayer.playlist.min.js" language="javascript" type="text/javascript"></script>
|
|
<?php
|
|
if ($iframed) {
|
|
?>
|
|
<script type="text/javascript">
|
|
function NavigateTo(url)
|
|
{
|
|
window.parent.document.getElementById('frame_main').setAttribute('src', url);
|
|
}
|
|
</script>
|
|
<?php
|
|
}
|
|
?>
|
|
<script type="text/javascript">
|
|
$(document).ready(function(){
|
|
|
|
if (!isNaN($.cookie('jp_volume'))) {
|
|
var jp_volume = $.cookie('jp_volume');
|
|
} else {
|
|
var jp_volume = 0.80;
|
|
}
|
|
|
|
var myPlaylist = new jPlayerPlaylist({
|
|
jPlayer: "#jquery_jplayer_1",
|
|
cssSelectorAncestor: "#jp_container_1"
|
|
}, [<?php echo $playlistjs; ?>], {
|
|
playlistOptions: {
|
|
autoPlay: true,
|
|
loopOnPrevious: false,
|
|
shuffleOnLoop: true,
|
|
enableRemoveControls: false,
|
|
displayTime: 'slow',
|
|
addTime: 'fast',
|
|
removeTime: 'fast',
|
|
shuffleTime: 'slow'
|
|
},
|
|
swfPath: "<?php echo Config::get('web_path'); ?>/modules/jplayer/",
|
|
supplied: "<?php echo join(",", $jtypes); ?>",
|
|
audioFullScreen: true,
|
|
smoothPlayBar: true,
|
|
solution: "<?php
|
|
$solutions = array();
|
|
if (Config::get('webplayer_html5')) {
|
|
$solutions[] = 'html';
|
|
}
|
|
if (Config::get('webplayer_flash')) {
|
|
$solutions[] = 'flash';
|
|
}
|
|
echo implode(',', $solutions);
|
|
?>",
|
|
nativeSupport:true,
|
|
oggSupport: false,
|
|
volume: jp_volume,
|
|
size: {
|
|
<?php
|
|
if ($iframed) {
|
|
?>
|
|
width: "80px",
|
|
height: "80px",
|
|
<?php
|
|
} else {
|
|
?>
|
|
width: "200px",
|
|
height: "auto",
|
|
<?php
|
|
}
|
|
?>
|
|
}
|
|
});
|
|
|
|
$("#jquery_jplayer_1").bind($.jPlayer.event.play, function (event) {
|
|
var current = myPlaylist.current,
|
|
playlist = myPlaylist.playlist;
|
|
var pos = $(".jp-playlist-current").position().top + $(".jp-playlist").scrollTop();
|
|
$(".jp-playlist").scrollTop(pos);
|
|
$.each(playlist, function (index, obj) {
|
|
if (index == current) {
|
|
<?php
|
|
if ($iframed) {
|
|
echo "var titleobj = '<a href=\"javascript:NavigateTo(\'" . Config::get('web_path') . "/albums.php?action=show&album=' + albumids[index] + '\');\">' + obj.title + '</a>';";
|
|
echo "var artistobj = '<a href=\"javascript:NavigateTo(\'" . Config::get('web_path') . "/artists.php?action=show&artist=' + artistids[index] + '\');\">' + obj.artist + '</a>';";
|
|
echo "var lyricsobj = '<a href=\"javascript:NavigateTo(\'" . Config::get('web_path') . "/song.php?action=show_lyrics&song_id=' + songids[index] + '\');\">" . T_('Show Lyrics') . "</a>';";
|
|
} else {
|
|
echo "var titleobj = obj.title;";
|
|
echo "var artistobj = obj.artist;";
|
|
}
|
|
?>
|
|
$('.playing_title').html(titleobj);
|
|
$('.playing_artist').html(artistobj);
|
|
<?php
|
|
if ($iframed && Config::get('show_lyrics')) {
|
|
?>
|
|
$('.playing_lyrics').html(lyricsobj);
|
|
<?php
|
|
}
|
|
if (Config::get('song_page_title')) {
|
|
if ($iframed) {
|
|
echo "window.parent.document";
|
|
} else {
|
|
echo "document";
|
|
}
|
|
echo ".title = obj.title + ' - ' + obj.artist + ' | " . addslashes(Config::get('site_title')) . "';";
|
|
}
|
|
?>
|
|
}
|
|
});
|
|
});
|
|
|
|
$("#jquery_jplayer_1").bind($.jPlayer.event.volumechange, function(event) {
|
|
$.cookie('jp_volume', event.jPlayer.options.volume, { expires: 7, path: '/'});
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<?php
|
|
if ($iframed) {
|
|
?>
|
|
<div class="jp-close">
|
|
<a href="javascript:ExitPlayer();" title="Close Player"><img src="images/close.png" border="0" /></a>
|
|
</div>
|
|
<?php
|
|
}
|
|
?>
|
|
<div class="playing_info">
|
|
<div class="playing_artist"></div>
|
|
<div class="playing_title"></div>
|
|
<div class="playing_lyrics"></div>
|
|
</div>
|
|
<div class="jp-area">
|
|
<div id="jquery_jplayer_1" class="jp-jplayer"></div>
|
|
<div id="jp_container_1" class="jp-audio">
|
|
<div class="jp-type-playlist">
|
|
<div class="jp-gui jp-interface">
|
|
<ul class="jp-controls">
|
|
<li><a href="javascript:;" class="jp-previous" tabindex="1">previous</a></li>
|
|
<li><a href="javascript:;" class="jp-play" tabindex="1">play</a></li>
|
|
<li><a href="javascript:;" class="jp-pause" tabindex="1">pause</a></li>
|
|
<li><a href="javascript:;" class="jp-next" tabindex="1">next</a></li>
|
|
<li><a href="javascript:;" class="jp-stop" tabindex="1">stop</a></li>
|
|
<li><a href="javascript:;" class="jp-mute" tabindex="1" title="mute">mute</a></li>
|
|
<li><a href="javascript:;" class="jp-unmute" tabindex="1" title="unmute">unmute</a></li>
|
|
<li><a href="javascript:;" class="jp-volume-max" tabindex="1" title="max volume">max volume</a></li>
|
|
</ul>
|
|
<div class="jp-progress">
|
|
<div class="jp-seek-bar">
|
|
<div class="jp-play-bar"></div>
|
|
</div>
|
|
</div>
|
|
<div id="jquery_jplayer_1_volume_bar" class="jp-volume-bar">
|
|
<div id="jquery_jplayer_1_volume_bar_value" class="jp-volume-bar-value"></div>
|
|
</div>
|
|
<div class="jp-current-time"></div>
|
|
<div class="jp-duration"></div>
|
|
<ul class="jp-toggles">
|
|
<li><a href="javascript:;" class="jp-shuffle" tabindex="1" title="shuffle">shuffle</a></li>
|
|
<li><a href="javascript:;" class="jp-shuffle-off" tabindex="1" title="shuffle off">shuffle off</a></li>
|
|
<li><a href="javascript:;" class="jp-repeat" tabindex="1" title="repeat">repeat</a></li>
|
|
<li><a href="javascript:;" class="jp-repeat-off" tabindex="1" title="repeat off">repeat off</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="jp-playlist">
|
|
<ul>
|
|
<li></li>
|
|
</ul>
|
|
</div>
|
|
<div class="jp-no-solution">
|
|
<span>Unsupported</span>
|
|
This media is not supported by the player. Is your browser up to date?
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|