blob: 4084804766417a03a979e1448a46e6ca89a0f484 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?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'],
));
|