mirror of
https://github.com/voc/streaming-website
synced 2024-11-10 14:44:21 +00:00
15 lines
269 B
PHP
15 lines
269 B
PHP
<?php
|
|
|
|
$room = new Room($_GET['room']);
|
|
$stream = $room->selectStream(
|
|
$_GET['selection'], $_GET['language']);
|
|
|
|
echo $tpl->render(array(
|
|
'page' => 'room',
|
|
|
|
'title' => $stream->getDisplay(),
|
|
'room' => $room,
|
|
'stream' => $stream,
|
|
|
|
'schedule' => new Schedule(),
|
|
));
|