MOD #137
authorGreg Burri <greg.burri@gmail.com>
Fri, 11 Sep 2009 16:01:19 +0000 (18:01 +0200)
committerGreg Burri <greg.burri@gmail.com>
Fri, 11 Sep 2009 16:01:19 +0000 (18:01 +0200)
index.php

index e0b42df..ea5c35e 100644 (file)
--- a/index.php
+++ b/index.php
@@ -1,13 +1,16 @@
 <?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=&quot;minichat&quot;;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");
@@ -15,25 +18,14 @@ include_once("php/config.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=&quot;minichat&quot;;conv=[1642]' => 'Chat',
-   'contacts' => 'Contacts',
-   #'mods' => 'Mods',
-   #'cracks' => 'Cracks',
-   #'pizzas' => 'Pizza',
-);
-
 echo '<?xml version="1.0" encoding="UTF-8"?>';
 ?>