diff options
-rw-r--r-- | template/party.phtml | 13 | ||||
-rw-r--r-- | view/party.php | 13 |
2 files changed, 0 insertions, 26 deletions
diff --git a/template/party.phtml b/template/party.phtml deleted file mode 100644 index 9b22ce1..0000000 --- a/template/party.phtml +++ /dev/null @@ -1,13 +0,0 @@ -<div class="container-fluid room party audio"> - <h1><?=h($title)?></h1> - - <div class="player-wrap"> - <? include("$assemblies/player/audio.phtml") ?> - </div> - - <div class="tab-content"> - <div class="tab-pane active" id="switcher"> - <? include("$assemblies/switcher/party.phtml") ?> - </div> - </div> -</div> diff --git a/view/party.php b/view/party.php deleted file mode 100644 index 322cea6..0000000 --- a/view/party.php +++ /dev/null @@ -1,13 +0,0 @@ -<?php - -$room = $_GET['room']; -echo $tpl->render(array( - 'page' => 'party', - - 'title' => $GLOBALS['CONFIG']['ROOMS'][$room], - - 'rooms' => $GLOBALS['CONFIG']['ROOMS'], - - 'room' => $room, - 'roomname' => $GLOBALS['CONFIG']['ROOMS'][$room], -)); |