streaming-website/formats.php
2014-10-02 16:19:15 +02:00

18 lines
397 B
PHP

<?php
require_once('lib/PhpTemplate.php');
require_once('lib/helper.php');
require_once('config.php');
$room = $_GET['room'];
$tpl = new PhpTemplate('template/page.phtml');
echo $tpl->render(array(
'page' => 'formats',
'baseurl' => baseurl(),
'title' => 'Stream-Formats',
'subtitle' => $GLOBALS['CONFIG']['ROOMS'][$room],
'room' => $room,
'formats' => $GLOBALS['CONFIG']['FORMATS'],
));