ADD informations concernant les jours pendant lesquels les participants sont présent...
[cl7.git] / php / 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 $COUT_PERIODE = 15;
13 $COUT_TOTAL = 40;
14
15 # nombre maximum de participant
16 $NB_MAX_PARTICIPANT = 25;
17
18 # nombre de votes possibles par participants
19 $NB_VOTES_JEUX = 3;
20
21 # mettre à TRUE pour cloturer les inscriptions
22 $INSCRIPTIONS_TERMINEES = FALSE;
23
24 # si la partie pizza est visible
25 $PIZZA_VISIBLE = 0;
26
27 # si on peut commander des pizza (mettre a 0 lorsque on telephone pour commander ! ;)
28 $PIZZA_PEUT_COMMANDER = 1;
29 ?>