streaming-website/view/room.php

16 lines
293 B
PHP
Raw Normal View History

2014-10-01 14:42:22 +00:00
<?php
$room = $conference->getRoom($_GET['room']);
$stream = $room->selectStream(
$_GET['selection'], $_GET['language']);
2015-02-27 16:21:51 +00:00
echo $tpl->render(array(
'page' => 'room',
'title' => $stream->getDisplay(),
2014-10-01 14:42:22 +00:00
'room' => $room,
'stream' => $stream,
2014-10-01 14:42:22 +00:00
'schedule' => $conference->getSchedule(),
2014-10-01 14:42:22 +00:00
));