summaryrefslogtreecommitdiff
path: root/appli_3_alpha_old/include/ludo/config.inc.php
diff options
context:
space:
mode:
authorLudovic Pouzenc <ludovic@pouzenc.fr>2018-06-30 10:05:02 +0200
committerLudovic Pouzenc <ludovic@pouzenc.fr>2018-06-30 10:05:02 +0200
commit71b503f07007346eda3d1da71d4a64f31f13d846 (patch)
tree3d1aaa880857eb05e7e9c1f2d75f309507dd9c07 /appli_3_alpha_old/include/ludo/config.inc.php
parent756f0fa75c7d8e18188dffdfbdd4416651dca9fe (diff)
download2007-AWOR-71b503f07007346eda3d1da71d4a64f31f13d846.tar.gz
2007-AWOR-71b503f07007346eda3d1da71d4a64f31f13d846.tar.bz2
2007-AWOR-71b503f07007346eda3d1da71d4a64f31f13d846.zip
Prmère version alpha 2007-02-03+09:07:04 - 2007-02-06+12:19:50
Diffstat (limited to 'appli_3_alpha_old/include/ludo/config.inc.php')
-rw-r--r--appli_3_alpha_old/include/ludo/config.inc.php63
1 files changed, 63 insertions, 0 deletions
diff --git a/appli_3_alpha_old/include/ludo/config.inc.php b/appli_3_alpha_old/include/ludo/config.inc.php
new file mode 100644
index 0000000..58d159f
--- /dev/null
+++ b/appli_3_alpha_old/include/ludo/config.inc.php
@@ -0,0 +1,63 @@
+<?php
+$CONFIG = array
+(
+ 'adminMail' => 'jmi@iut-blagnac.fr',
+ 'AUTH' => array
+ (
+ 'POP' => array
+ (
+ 'SERVERS' => array
+ (
+ 'wanadoo.fr' => array
+ (
+ 'subdomain' => 'pop.orange.fr',
+ 'port' => 110,
+ 'username_is_full_mail' => false
+ ),
+ 'orange.fr' => array
+ (
+ 'subdomain' => 'pop.orange.fr',
+ 'port' => 110,
+ 'username_is_full_mail' => false
+ )
+ )
+ ),
+ 'bypass_if_local' => false
+ ),
+ 'CSS' => array
+ (
+ 'CHOOSER_LIST' => array
+ (
+ // 'nom à afficher' => 'nom_fichier_sans_extension'
+ 'standard' => 'ice',
+ 'bleu' => 'style1'
+ )
+ ),
+ 'MAIL' => array
+ (
+ 'TEMPLATES' => array
+ (
+ 'cree' => array
+ (
+ 'caption' => 'Nouvelle Réunion',
+ 'tpl_file' => 'mail_cree.php'
+ ),
+ 'modif' => array
+ (
+ 'caption' => 'Réunion modifiée',
+ 'tpl_file' => 'mail_modif.php'
+ ),
+ 'annul' => array
+ (
+ 'caption' => 'Réunion annulée',
+ 'tpl_file' => 'mail_annul.php'
+ ),
+ 'fixee' => array
+ (
+ 'caption' => 'Réunion fixée',
+ 'tpl_file' => 'mail_fixee.php'
+ )
+ )
+ )
+);
+?>