diff options
Diffstat (limited to 'bin/backend.php')
-rw-r--r-- | bin/backend.php | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/bin/backend.php b/bin/backend.php index b2c41b3..631330d 100644 --- a/bin/backend.php +++ b/bin/backend.php @@ -1,25 +1,34 @@ <?php + header('Content-type: text/html'); + +if (file_exists('../config.php')) + include ('../config.php'); +else + include ('../config_default.php'); +include ('./utils.php'); +include ('./vdr.php'); + $action=$_REQUEST['action']; switch ($action) { case ("getGlobals"): - $tree = file_get_contents("textfiles/getGlobals.txt"); + $tree = getGlobals(); print $tree; break; case ("getTvCat"): - $tree = file_get_contents("textfiles/getTvCat.txt"); + $tree = getTvCat(); print $tree; break; case ("getFullChanList"): - $tree = file_get_contents("textfiles/getFullChanList.txt"); + $tree = getFullChanList(); print $tree; break; case ("getTvChan"): - $tree = file_get_contents("textfiles/getTvChan.txt"); + $tree = GetTvChan($_REQUEST['cat']); print $tree; break; |