summaryrefslogtreecommitdiff
path: root/bin/backend.php
diff options
context:
space:
mode:
authorTheTroll <trolldev@gmail.com>2010-03-24 17:40:22 +0100
committerTheTroll <trolldev@gmail.com>2010-03-24 17:40:22 +0100
commit50c89b73b4f8e3e4b86dcac9865ee96931c7a9b4 (patch)
treec0c62ffc767fb791eb57f173a4ade020dd80951a /bin/backend.php
parent9a1a60cd639222e20564eef754d69abfdc761e20 (diff)
downloadistreamdev-50c89b73b4f8e3e4b86dcac9865ee96931c7a9b4.tar.gz
istreamdev-50c89b73b4f8e3e4b86dcac9865ee96931c7a9b4.tar.bz2
Added getepg and getepginfo
Diffstat (limited to 'bin/backend.php')
-rwxr-xr-xbin/backend.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/bin/backend.php b/bin/backend.php
index 706dd91..ad72df7 100755
--- a/bin/backend.php
+++ b/bin/backend.php
@@ -100,6 +100,15 @@ switch ($action)
$tree = streamAudio($_REQUEST['path'], $_REQUEST['file']);
print $tree;
break;
+
+ case ("getEpg"):
+ $tree = getEpg($_REQUEST['channel'], $_REQUEST['time'], $_REQUEST['day'], $_REQUEST['programs']);
+ print $tree;
+ break;
+ case ("getEpgInfo"):
+ $tree = getEpgInfo($_REQUEST['channel'], $_REQUEST['time'], $_REQUEST['day']);
+ print $tree;
+ break;
}
?>