diff options
author | Alib <aliboba@free.fr> | 2010-02-21 23:53:20 +0100 |
---|---|---|
committer | Alib <aliboba@free.fr> | 2010-02-21 23:53:20 +0100 |
commit | 029c667f638cb9875636eedef1ddd3e45d62e9d7 (patch) | |
tree | 4ec9fd7329271a38055a01b4fd2a6c089059d69d /includes/include.php | |
parent | 3e0c075573b88b02c1d3c1a69251f41b31385ef8 (diff) | |
download | istreamdev-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-x | includes/include.php | 15 |
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) |