diff options
author | Alib <aliboba@free.fr> | 2010-02-19 17:24:46 +0100 |
---|---|---|
committer | Alib <aliboba@free.fr> | 2010-02-19 17:24:46 +0100 |
commit | 31e17f99c8bf22b89bcd92b314d8df5b8fcc4189 (patch) | |
tree | 41538c66cfc85b836a0e4881b39ffcc65b8f050e /includes/include.php | |
parent | c109894e17e5d77b027774e9fb1e236bcc1b2bfd (diff) | |
download | istreamdev-31e17f99c8bf22b89bcd92b314d8df5b8fcc4189.tar.gz istreamdev-31e17f99c8bf22b89bcd92b314d8df5b8fcc4189.tar.bz2 |
adding pictos, nologos*, and preparing some stuff for timers & epg
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; |