summaryrefslogtreecommitdiff
path: root/includes/include.php
diff options
context:
space:
mode:
authorAlib <aliboba@free.fr>2010-02-21 23:53:20 +0100
committerAlib <aliboba@free.fr>2010-02-21 23:53:20 +0100
commit029c667f638cb9875636eedef1ddd3e45d62e9d7 (patch)
tree4ec9fd7329271a38055a01b4fd2a6c089059d69d /includes/include.php
parent3e0c075573b88b02c1d3c1a69251f41b31385ef8 (diff)
downloadistreamdev-029c667f638cb9875636eedef1ddd3e45d62e9d7.tar.gz
istreamdev-029c667f638cb9875636eedef1ddd3e45d62e9d7.tar.bz2
updated new timer template. Added spinningwheel from
http://cubiq.org/spinning-wheel-on-webkit-for-iphone-ipod-touch/11
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)