aboutsummaryrefslogtreecommitdiff
path: root/view/relive-player-netcut.php
diff options
context:
space:
mode:
authorAndreas Hubel2020-06-07 21:36:10 +0200
committerAndreas Hubel2020-06-07 21:36:10 +0200
commitd0a9d8b2b0d28dbef209c7cbcbfd56eaeac24d9b (patch)
tree9fa0fe42cda5b91479ce7219dd8d259652349efb /view/relive-player-netcut.php
parent7d167175ef9878edfd488518e0bdd09493fe6b9b (diff)
hacky netcut integration
Diffstat (limited to '')
-rw-r--r--view/relive-player-netcut.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/view/relive-player-netcut.php b/view/relive-player-netcut.php
new file mode 100644
index 0000000..d453028
--- /dev/null
+++ b/view/relive-player-netcut.php
@@ -0,0 +1,13 @@
+<?php
+
+$relive = $conference->getRelive();
+$talk = $relive->getTalk(intval($_GET['id']));
+
+echo $tpl->render(array(
+ 'page' => 'relive-player-netcut',
+ 'title' => $talk['title'],
+ 'talk' => $talk,
+
+ 'width' => 1920,
+ 'height' => 1080,
+));