<?php # coding: utf-8
-
-$page = $_GET['page'];
-if (!isset($page)) $page = "accueil"; #la page par défaut
-
-/* Pour déterminer si en LAN !?
-$IP_SERVEUR = '192.168.1.1';
-$MASK_RESEAU = '255.255.255.0';
-if($titre[1] && (ip2long($REMOTE_ADDR) & ip2long($MASK_RESEAU)) != (ip2long($IP_SERVEUR) & ip2long($MASK_RESEAU)))
-*/
+\r
+$MENU = array(\r
+ 'accueil' => 'Accueil', # la page par défaut\r
+ 'jeux_joues' => 'Jeux joués',\r
+ 'inscription' => 'Inscription',\r
+ 'inscrits' => 'Inscrits',\r
+ 'http://www.euphorik.ch/#page="minichat";conv=[1642]' => 'Chat',\r
+ 'contacts' => 'Contacts',\r
+ #'mods' => 'Mods',\r
+ #'cracks' => 'Cracks',\r
+ #'pizzas' => 'Pizza',\r
+);\r
include_once("php/participant.php");
include_once("php/connexion.php");
include_once("php/controller.php");
include_once("php/panel.php");
-# Différents objets, sont accessibles directements par les pages (voir dossier '/php/pages/').
+# Différents objets, sont accessibles directement par les pages (voir dossier '/php/pages/').\r
+$page = $_GET['page'] ? $_GET['page'] : 'accueil';
$config = new Config();
$connexion = new Connexion();
$participant = $connexion->participant;
$controller = new Controller($participant);
$panel = new Panel($participant);
-$MENU = array(
- 'accueil' => 'Accueil',
- 'jeux_joues' => 'Jeux joués',
- 'inscription' => 'Inscription',
- 'inscrits' => 'Inscrits',
- 'http://www.euphorik.ch/#page="minichat";conv=[1642]' => 'Chat',
- 'contacts' => 'Contacts',
- #'mods' => 'Mods',
- #'cracks' => 'Cracks',
- #'pizzas' => 'Pizza',
-);
-
echo '<?xml version="1.0" encoding="UTF-8"?>';
?>