mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 01:39:24 +02:00
20 lines
No EOL
587 B
PHP
20 lines
No EOL
587 B
PHP
<?php
|
|
$playlists_id = intval(@$_REQUEST['playlists_id_live']);
|
|
if(empty($playlists_id)){
|
|
return "";
|
|
}
|
|
?>
|
|
<span id="epg"></span>
|
|
<script>
|
|
$(document).ready(function () {
|
|
$("#epg").closest(".row").prepend("<div class='col-sm-12 watch8-action-buttons' id='epgLine' style='display:none;'></div>");
|
|
|
|
$.ajax({
|
|
url: '<?php echo PlayLists::getLiveEPGLink($playlists_id); ?>',
|
|
success: function (response) {
|
|
$("#epgLine").html(response);
|
|
$("#epgLine").slideDown();
|
|
}
|
|
});
|
|
});
|
|
</script>
|