blob: 0750cdc41d591d787a1e56d7480ce8a0ce6caf82 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
<?php
require_once('lib/PhpTemplate.php');
require_once('lib/helper.php');
require_once('config.php');
$room = $_GET['room'];
$language = $_GET['language'];
$format = $_GET['format'];
switch($format) {
case 'audio':
$type = 'audio';
break;
case 'slides':
$type = 'slides';
break;
case 'hd':
$type = 'video';
$width = 1920;
$height = 1080;
break;
case 'hq':
$type = 'video';
$width = 1024;
$height = 576;
break;
case 'lq':
$type = 'video';
$width = 640;
$height = 360;
break;
}
$tpl = new PhpTemplate('template/page.phtml');
echo $tpl->render(array(
'page' => 'room',
'baseurl' => baseurl(),
'title' => $GLOBALS['CONFIG']['ROOMS'][$room].' – '.$GLOBALS['CONFIG']['FORMATS'][$format],
'rooms' => $GLOBALS['CONFIG']['ROOMS'],
'formats' => $GLOBALS['CONFIG']['FORMATS'],
'room' => $room,
'roomname' => $GLOBALS['CONFIG']['ROOMS'][$room],
'type' => $type,
'width' => @$width,
'height' => @$height,
'language' => $language,
'format' => $format,
));
|