diff options
Diffstat (limited to 'includes/include.php')
-rwxr-xr-x | includes/include.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/includes/include.php b/includes/include.php index 913b22a..ca86aea 100755 --- a/includes/include.php +++ b/includes/include.php @@ -42,6 +42,12 @@ function selectpage() case ("media"): gen_media(); break; + case ("epg"): + gen_epg(); + break; + case ("timers"): + gen_timers(); + break; case ("startstream"): $type = $_REQUEST['type']; $name = $_REQUEST['name']; @@ -91,6 +97,16 @@ function gen_media() include('includes/inc_media.php'); } +function gen_epg() +{ + include('includes/inc_epg.php'); +} +function gen_timers() +{ + include('includes/inc_timers.php'); +} + + function start_stream($type, $name, $title, $desc, $qname, $qparams, $category, $url) { global $httppath, $ffmpegpath; |