diff options
author | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2018-06-30 11:37:30 +0200 |
---|---|---|
committer | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2018-06-30 11:37:30 +0200 |
commit | 5dac82f52f45ad27f16ec2ff63ee75e2f39ef942 (patch) | |
tree | 62cf671332976c83024139fc4c22009b382d45ff /beta_accents/app/include/ludo/config.inc.php | |
parent | 34795da1b6bd714df0d5dce93558e04b2bb8a287 (diff) | |
download | 2007-AWOR-5dac82f52f45ad27f16ec2ff63ee75e2f39ef942.tar.gz 2007-AWOR-5dac82f52f45ad27f16ec2ff63ee75e2f39ef942.tar.bz2 2007-AWOR-5dac82f52f45ad27f16ec2ff63ee75e2f39ef942.zip |
Renommage pour diff de beta_old1 vers beta_accents
Diffstat (limited to 'beta_accents/app/include/ludo/config.inc.php')
-rw-r--r-- | beta_accents/app/include/ludo/config.inc.php | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/beta_accents/app/include/ludo/config.inc.php b/beta_accents/app/include/ludo/config.inc.php new file mode 100644 index 0000000..6d6504b --- /dev/null +++ b/beta_accents/app/include/ludo/config.inc.php @@ -0,0 +1,74 @@ +<?php +$CONFIG = array +( + 'adminMail' => 'jmi@iut-blagnac.fr', + 'automatedMail' => 'no_reply@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', + 'Glace (ancien)' => 'ice_moche', + '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' + ) + ) + ), + 'SUPERUSERS' => array ('jeremie.denoyer', 'lpouzenc'), + 'UPLOAD' => array + ( + 'accepted_files' => array + ( + 'jpg', 'jpeg', 'gif', 'png', 'svg', 'pdf', 'ps', 'txt', 'rtf', 'csv', 'doc', 'docx', 'ppt', 'xls', 'sxw','sxp','sxd', 'odt', 'odg', 'odp', 'avi', 'mpg', 'mpeg', 'rm', 'flv', 'mp3', 'mp4', 'ogg','htm','html','zip', 'rar', 'tar', 'gz', 'bz2', 'ace' + ), + 'relative_path' => 'beta/upload_files/' + ) +); +?> |