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

$relive = new Relive();
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,
));