aboutsummaryrefslogtreecommitdiff
path: root/player.php
blob: 6afdb5f8a2f52973067a0c6f92278d59630c6c8b (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
<?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 'hq':
		$type = 'video';
		$width = 1920;
		$height = 1080;
		break;

	case 'hd':
		$type = 'video';
		$width = 1024;
		$height = 576;
		break;

	case 'ld':
		$type = 'video';
		$width = 640;
		$height = 360;
		break;
}

$tpl = new PhpTemplate('template/page.phtml');
echo $tpl->render(array(
	'page' => $type,
	'baseurl' => baseurl(),
	'title' => 'Rooms',

	'room' => $room,
	'roomname' => $GLOBALS['CONFIG']['ROOMS'][$room],

	'type' => $type,
	'width' => @$width,
	'height' => @$height,
));