summaryrefslogtreecommitdiff
path: root/includes/include.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/include.php')
-rwxr-xr-xincludes/include.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/includes/include.php b/includes/include.php
index ca86aea..e7d46ab 100755
--- a/includes/include.php
+++ b/includes/include.php
@@ -48,6 +48,12 @@ function selectpage()
case ("timers"):
gen_timers();
break;
+ case ("new_timer"):
+ gen_new_timer();
+ break;
+ case ("edit_timer"):
+ gen_edit_timer();
+ break;
case ("startstream"):
$type = $_REQUEST['type'];
$name = $_REQUEST['name'];
@@ -105,6 +111,15 @@ function gen_timers()
{
include('includes/inc_timers.php');
}
+function gen_new_timer()
+{
+ include('new_timer.html');
+}
+function gen_edit_timer()
+{
+ include('edit_timer.html');
+}
+
function start_stream($type, $name, $title, $desc, $qname, $qparams, $category, $url)