diff options
Diffstat (limited to 'bin/backend.php')
-rw-r--r-- | bin/backend.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/bin/backend.php b/bin/backend.php index b2c41b3..4fd9ba2 100644 --- a/bin/backend.php +++ b/bin/backend.php @@ -1,15 +1,23 @@ <?php + header('Content-type: text/html'); + +if (file_exists('../config.php')) + include ('../config.php'); +else + include ('../config_default.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; |