X-Git-Url: http://git.euphorik.ch/index.cgi?a=blobdiff_plain;f=index.php;h=d6241531435a5ae6bb366e0552bd022f7c99d136;hb=557974b66bba86b74181d2b18569ee897eac60a8;hp=8fc2259412b0845bdd99ab84340453fd94a94e12;hpb=019791caa57d7e07206cb917ff39bf14f728c83f;p=cl7.git diff --git a/index.php b/index.php index 8fc2259..d624153 100644 --- a/index.php +++ b/index.php @@ -1,7 +1,7 @@ 'Accueil', + 'acceuil' => 'Acceuil', 'jeux_joues' => 'Jeux joués', 'inscription' => 'Inscription', 'inscrits' => 'Inscrits', @@ -81,56 +81,57 @@ Corcelles-Lan 7 # affichage du menu foreach($MENU as $p => $titre ) { -$lien_externe = substr($p, 0, 4) == 'http'; -echo '' . $titre . ''; + $lien_externe = substr($p, 0, 4) == 'http'; + echo '' . $titre . ''; } ?>
'; -include("php/menu_droit.php"); -echo '
'; + echo '
'; + 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; + case 'accueil': + include("php/tx_informations.php"); + break; + case 'jeux_joues' : + include("php/pages/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/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/pizzas.php"); + break; + default : + echo 'erreur, page introuvable'; + break; } ?>