109 lines
2.5 KiB
PHP
109 lines
2.5 KiB
PHP
<?php
|
|
#- BEGIN LICENSE BLOCK ---------------------------------------
|
|
#
|
|
# This file is part of botsArena.
|
|
#
|
|
# Copyright (C) Gnieark et contributeurs
|
|
# Licensed under the GPL version 3.0 license.
|
|
# See LICENSE file or
|
|
# http://www.gnu.org/licenses/gpl-3.0-standalone.html
|
|
#
|
|
# -- END LICENSE BLOCK -----------------------------------------
|
|
//démmarrer une session php
|
|
@session_start();
|
|
|
|
require_once("../src/functions.php");
|
|
|
|
|
|
|
|
$arenas=get_arenas_list();
|
|
$lang=get_language_array();
|
|
|
|
|
|
if(isset($_GET['arena'])){
|
|
//check if arena is list
|
|
$currentArena = false;
|
|
foreach($arenas as $arena){
|
|
if($arena['id'] == $GET['arena']){
|
|
$currentArena = $GET['arena'];
|
|
break;
|
|
}
|
|
}
|
|
if(!$currentArena){
|
|
error("Wrong parameter");
|
|
die;
|
|
}
|
|
}else{
|
|
$currentArena = "";
|
|
}
|
|
|
|
|
|
//form submitting
|
|
if (isset($_POST['xd_check'])){
|
|
//vérifier le numero de formulaire
|
|
if (($_SESSION['xd_check']!=$_POST['xd_check']) AND ($_POST['xd_check'] !="")){
|
|
erreur ('Something wrong has appen');
|
|
die;
|
|
}
|
|
//call the good act.php
|
|
if(($currentArena <> "") && (file_exists("../src/arenas/".$currentArena."/act.php"))){
|
|
require_once("../src/arenas/".$currentArena."/act.php");
|
|
}else{
|
|
require_once("../src/arenas/".$currentArena."/act.php");
|
|
}
|
|
|
|
}
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="ROBOTS" content="INDEX, FOLLOW" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="author" content="Gnieark" />
|
|
|
|
<title></title>
|
|
</head>
|
|
<body>
|
|
|
|
<header>
|
|
<nav id="languages"><a href="-fr">fr</a> <a href="-en">en</a></nav>
|
|
<nav id="menus"><a href="/"><?php echo $lang['HOME']; ?></a>
|
|
<?php
|
|
foreach($arenas as $arena){
|
|
if( $arena['id'] == $currentArena){
|
|
$class="selected";
|
|
}else{
|
|
$class="";
|
|
}
|
|
echo '<a href="'.$arena['url'].'" class="'.$class.'">'.$arena['title'].'</a>';
|
|
}
|
|
?>
|
|
<h1><?php
|
|
if($currentArena == ""){
|
|
echo $lang['SITE_NAME'];
|
|
|
|
}else{
|
|
echo $arenas['current']['title'];
|
|
} ?></h1>
|
|
</header>
|
|
<section>
|
|
<?php
|
|
switch($currentArena){
|
|
case "":
|
|
echo "<h2>Accueil</h2>";
|
|
break;
|
|
default:
|
|
include ("../src/arenas/".$currentArena."/public.php");
|
|
break;
|
|
}
|
|
?>
|
|
</section>
|
|
<footer>
|
|
</footer>
|
|
</body>
|
|
</html>
|