blob: 5d66f08ef06fa6efba456d11d08aa21a3f68fa8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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' => 'formats',
'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',
),
));
|