zeg1jeux/footer.php

27 lines
609 B
PHP
Raw Normal View History

2022-10-21 21:26:41 +02:00
</main>
<footer>
<p>Created by La Bureautique Incorporated, STI (Société Totalement Irresponsable) au capital de 200 000 Ğ1.</p>
</footer>
2022-10-26 13:03:52 +02:00
<?php
if (isset($_SESSION['gameId']) and isset($bodyIds) and strpos($bodyIds, 'startpage') === false) {
2022-10-21 21:26:41 +02:00
$themeJSDir = 'themes/'. $_SESSION['gameId'] . '/js';
$files = scandir($themeJSDir);
$files = array_slice($files, 2);
2022-10-26 13:03:52 +02:00
foreach ($files as $f) {
echo '
<script type="text/javascript" src="'. $themeJSDir . '/' . $f .'"></script>
';
}
2022-10-26 13:03:52 +02:00
}
?>
2022-10-21 21:26:41 +02:00
<script type="text/javascript" src="assets/js/places.js"></script>
2022-10-21 21:26:41 +02:00
</body>
</html>