diff options
Diffstat (limited to 'formats.php')
-rw-r--r-- | formats.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/formats.php b/formats.php new file mode 100644 index 0000000..1908680 --- /dev/null +++ b/formats.php @@ -0,0 +1,24 @@ +<?php + +require_once('lib/PhpTemplate.php'); +require_once('lib/helper.php'); +require_once('config.php'); + +$room = $_GET['room']; + +$tpl = new PhpTemplate('template/page.phtml'); +echo $tpl->render(array( + 'page' => 'rooms', + 'baseurl' => baseurl(), + 'title' => 'Stream-Formats', + 'subtitle' => ucfirst($room), + + 'room' => $room, + 'formats' => array( + 'hd' => 'FullHD', + 'hq' => 'High Quality', + 'lq' => 'Low Quality', + 'audio' => 'Audio-Only', + 'slides' => 'Slide-Images + Audio', + ), +)); |