X-Git-Url: http://git.euphorik.ch/?a=blobdiff_plain;f=index.php;h=9f5f1e88ebcd15f24f0207a76bcdce2ac06e7b62;hb=c6ae5deb1fbef72523af41ba84f5eb8840473fd2;hp=8fc2259412b0845bdd99ab84340453fd94a94e12;hpb=fcf5e5bc507ea3eca99a70537bb1e48f8aeb455a;p=cl7.git diff --git a/index.php b/index.php index 8fc2259..9f5f1e8 100644 --- a/index.php +++ b/index.php @@ -1,33 +1,36 @@ 'Accueil', # la page par défaut + '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', +); -$page = $_GET['page']; -if (!isset($page)) $page = "acceuil"; #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))) -*/ - -include_once("php/class_participant.php"); +include_once("php/participant.php"); include_once("php/connexion.php"); include_once("php/config.php"); include_once("php/controller.php"); +include_once("php/panel.php"); -$MENU = array( - 'acceuil' => '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', -); +# Différents objets, sont accessibles directement par les pages (voir dossier '/php/pages/'). +$page = $_GET['page'] ? $_GET['page'] : 'accueil'; +$connexion = new Connexion(); +$config = new Config(); +$participant = $connexion->participant; +$controller = new Controller($participant, $config); +$panel = new Panel($participant); + +if ($controller->nouvel_inscrit) + $page = "bienvenue"; echo ''; + ?> '; - '; - + if ($controller->message_utilisateur) + echo ''; + else if ($connexion->message_utilisateur) + echo ''; + # Des constantes stockées en BD accessible par le javascript. echo ''; echo ''; - echo ''; + $nbPeriodes = mysql_fetch_array(mysql_query("SELECT COUNT(*) FROM periodes")); + echo ''; ?> - Corcelles-Lan 7 + Corcelles-Lan 8 - - - + + + - -
-
-
-
-get("inscription_terminees")) -{ - echo "Les inscriptions sont terminées !"; -} -else if ($nb_places_libres <= 0) -{ - echo "Il n'y a plus de places libres"; -} -else -{ - $s = $nb_places_libres > 1 ? 's' : ''; - echo "Il reste ", $nb_places_libres, " place", $s, " libre", $s; -} -?> -
-Corcelles-Lan 7 -
- -
-'; -include("php/menu_droit.php"); -echo '
'; -} -switch ($page) -{ -case 'acceuil': -include("php/tx_informations.php"); -break; -case 'jeux_joues' : -include("php/tx_jeux_joues.php"); -break; -case 'inscription' : -if (Participant::nombre_participant_max_atteint() && !$le_participant->valide) -echo 'Nous sommes désolés, il n\'y a plus de places libres'; -else -include("php/tx_inscription.php"); -break; -case 'inscrits' : -include("php/tx_inscrits.php"); -break; -case 'tournoi' : -include("php/tx_tournoi.php"); -break; -case 'intranet' : -include("php/tx_intranet.php"); -break; -case 'bienvenue' : -include("php/tx_bienvenue.php"); -break; -case 'contacts' : -include("php/tx_contacts.php"); -break; -case 'photos' : -include("php/tx_photos.php"); -break; -case 'pizzas': -include("php/pizzas.php"); -break; -default : -echo 'erreur, page introuvable'; -break; -} -?> -
-
-~ site codé en PHP avec les pieds ~ -
-
- + +
+
+
+
+ get("inscription_terminees")) + { + echo "Les inscriptions sont terminées !"; + } + else if ($nb_places_libres <= 0) + { + echo "Il n'y a plus de places libres"; + } + else + { + $s = $nb_places_libres > 1 ? 's' : ''; + echo "Il reste ", $nb_places_libres, " place", $s, " libre", $s; + } + ?> +
+ Corcelles-Lan 8 +
+ +
+ '; + $panel->rendre(); + echo '
'; + } + + switch ($page) + { + case 'accueil': + include("php/pages/informations.php"); + break; + case 'jeux_joues' : + include("php/pages/jeux_joues.php"); + break; + case 'inscription' : + if (Participant::nombre_participant_max_atteint() && !$participant->valide) + echo 'Nous sommes désolés, il n\'y a plus de places libres'; + else + include("php/pages/inscription.php"); + break; + case 'inscrits' : + include("php/pages/inscrits.php"); + break; + case 'tournoi' : + include("php/pages/tournoi.php"); + break; + case 'intranet' : + include("php/pages/intranet.php"); + break; + case 'bienvenue' : + include("php/pages/bienvenue.php"); + break; + case 'contacts' : + include("php/pages/contacts.php"); + break; + case 'photos' : + include("php/pages/photos.php"); + break; + case 'pizzas': + include("php/pages/pizzas.php"); + break; + default : + echo 'erreur, page introuvable'; + break; + } + ?> +
+
+ ~ site codé en PHP avec les pieds ~ +
+
+