diff options
-rw-r--r-- | .htaccess | 2 | ||||
-rw-r--r-- | party.php | 20 | ||||
-rw-r--r-- | template/party.phtml | 7 |
3 files changed, 28 insertions, 1 deletions
@@ -21,7 +21,7 @@ RewriteRule ^(saal1|saal2|saalg|saal6)/(hd|lq|audio|slides)/?$ room.php?room=$1& RewriteRule ^(saal1|saal2|saalg|saal6)/(hd|lq|audio|slides)/translated/?$ room.php?room=$1&format=$2&language=translated [L] # /party/ -> player.php - simple audio-player for party -RewriteRule ^(lounge|ambient|sendezentrum)/?$ audio.php?room=$1&format=audio [L] +RewriteRule ^(lounge|ambient|sendezentrum)/?$ party.php?room=$1&format=audio [L] # Show a known page in case of as miss ErrorDocument 404 404.php diff --git a/party.php b/party.php new file mode 100644 index 0000000..045de26 --- /dev/null +++ b/party.php @@ -0,0 +1,20 @@ +<?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' => 'party', + + 'baseurl' => baseurl(), + 'title' => $GLOBALS['CONFIG']['ROOMS'][$room], + + 'rooms' => $GLOBALS['CONFIG']['ROOMS'], + + 'room' => $room, + 'roomname' => $GLOBALS['CONFIG']['ROOMS'][$room], +)); diff --git a/template/party.phtml b/template/party.phtml new file mode 100644 index 0000000..1ec4b44 --- /dev/null +++ b/template/party.phtml @@ -0,0 +1,7 @@ +<div class="container-fluid rooms"> + <h1><?=h($title)?></h1> + + <div class="tab-content"> + <? include("players/audio.phtml") ?> + </div> +</div> |