ADD premier commit
[cl7.git] / config.php
1 <?php # encoding:utf-8
2 /**
3 * Paramètres du site CL7.
4 */
5
6 # Parametres MySQL
7 $SQL_HOTE = "localhost";
8 $SQL_LOGIN = "cl7";
9 $SQL_PASS = "123soleil";
10 $NOM_BASE = "corcelles_lan7";
11
12 # nombre maximum de participant
13 $NB_MAX_PARTICIPANT = 25;
14
15 # nombre de votes possibles par participants
16 $NB_VOTES_JEUX = 3;
17
18 # mettre à TRUE pour cloturer les inscriptions
19 $INSCRIPTIONS_TERMINEES = FALSE;
20
21 # si la partie pizza est visible
22 $PIZZA_VISIBLE = 0;
23
24 # si on peut commander des pizza (mettre a 0 lorsque on telephone pour commander ! ;)
25 $PIZZA_PEUT_COMMANDER = 1;
26 ?>