aboutsummaryrefslogtreecommitdiff
path: root/view/relive-player.php
blob: 30de0024d42465baa4f5b31579acbd4e22a6496f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

$relive = $conference->getRelive();
if(!$relive->isEnabled())
	throw new NotFoundException('Internal Relive is disabled');

$talk = $relive->getTalk(intval($_GET['id']));

echo $tpl->render(array(
	'page' => 'relive-player',
	'title' => 'Relive: ' . $talk['title'],
	'talk' => $talk,

	'width' => 1024,
	'height' => 576,
));