blob: cc8d6825227be8fcf35e7159d373a09771bc18d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
$relive = $conference->getRelive();
if(!$relive->isEnabled())
throw new NotFoundException('Internal Relive is disabled');
echo $tpl->render(array(
'page' => 'relive',
'title' => 'Relive!',
'talks' => $relive->getTalks(),
));
|