KLanding/feeds/SickBeard_todaySoon.php

75 lines
3.3 KiB
PHP
Raw Normal View History

2016-03-12 17:16:06 +00:00
<!--Force IE6 into quirks mode with this comment tag-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<link rel="stylesheet" type="text/css" href="../css/white.css" />
<link rel="stylesheet" type="text/css" href="../css/static.php" />
<link rel="alternate stylesheet" type="text/css" media="screen" title="black" href="../css/black.css" />
<link rel="alternate stylesheet" type="text/css" media="screen" title="white" href="../css/white.css" />
<link rel="alternate stylesheet" type="text/css" media="screen" title="blue" href="../css/blue.css" />
<link rel="alternate stylesheet" type="text/css" media="screen" title="red" href="../css/red.css" />
<link rel="alternate stylesheet" type="text/css" media="screen" title="custom" href="../css/custom.php" />
<script src="../styleswitch.js" type="text/javascript">
</script>
2016-03-13 13:54:54 +00:00
<script type="text/javascript" src="http://www.convergent-evolution.co.uk/js/full/scrollingcarousel.2.0.js"></script>
2016-03-12 17:16:06 +00:00
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.js" type="text/javascript"></script>
<style>
.hiddenRow { display: none; }
</style>
<script>
function toggleNextRow(row) {
var nextRow = $(row).next();
nextRow.toggle();
}
function togglebodytheme() {
$('#themetable tbody').toggle();
}
</script>
2016-03-13 13:54:54 +00:00
<script type="text/javascript">
$(document).ready(function() {
$('#carousel-demo1').scrollingCarousel( {
scrollerAlignment : 'vertical',
autoScroll: true
});
});
</script>
2016-03-12 17:16:06 +00:00
</head>
<body>
<?php
include '../config.php';
2016-03-13 13:54:54 +00:00
$Sick = json_decode(file_get_contents("http://$base:$sickport/api/$SICKAPI/?cmd=future&sort=date&type=today"), TRUE);
$SickSoon = json_decode(file_get_contents("http://$base:$sickport/api/$SICKAPI/?cmd=future&sort=date&type=soon"), TRUE); ?>
<table>
<th style='text-align: left;'><font color='white'>Today</font></th>
</table>
<ul>
2016-03-12 17:16:06 +00:00
<?php foreach($Sick['data'] as $day) : ?>
<?php foreach($day as $item) : ?>
<?php $url = "http://$base:$sickport/api/$SICKAPI/?cmd=show.getbanner&tvdbid=".$item['tvdbid']; ?>
2016-03-13 13:54:54 +00:00
<li style='border: 1px solid black; background-image: url(<?php echo $url; ?>); background-size: 100% 100%'>
<span style="background-color: #000000"> <?php echo $item['show_name'] ?></br>S<?php echo $item['season'] ?>E<?php echo $item['episode'] ?> - <?php echo $item['ep_name'] ?></li></span>
<?php endforeach ?>
<?php endforeach ?>
</ul>
<table>
<th style='text-align: left;'><font color='white'>Soon</font></th>
</table>
<ul>
<?php foreach($SickSoon['data'] as $day) : ?>
<?php foreach($day as $item) : ?>
<?php $url = "http://$base:$sickport/api/$SICKAPI/?cmd=show.getbanner&tvdbid=".$item['tvdbid']; ?>
<li style='border: 1px solid black; background-image: url(<?php echo $url; ?>); background-size: 100% 100%'>
<span style="background-color: #000000"> <?php echo $item['airdate'] ?></br><?php echo $item['show_name'] ?></br>S<?php echo $item['season'] ?>E<?php echo $item['episode'] ?> - <?php echo $item['ep_name'] ?></li></span>
2016-03-12 17:16:06 +00:00
<?php endforeach ?>
<?php endforeach ?>
</ul>
2016-03-13 13:54:54 +00:00
<?php echo "<a href=\"http://$base:$sickport/api/$SICKAPI/?cmd=sb.forcesearch\"target=\"_blank\">Click here To Force Search</a>"; ?>
2016-03-12 17:16:06 +00:00
</body>
</html>