aboutsummaryrefslogtreecommitdiff
path: root/view/room.php
blob: d5862483b825b029f5f81f3e445e9e9d690dc503 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

$room = $conference->getRoom($_GET['room']);
$stream = $room->selectStream(
	$_GET['selection'], $_GET['language']);

echo $tpl->render(array(
	'page' => 'room',

	'title' => $stream->getDisplay(),
	'room' => $room,
	'stream' => $stream,

	'schedule' => $conference->getSchedule(),
));