2014-09-04 17:52:18 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* This software is governed by the CeCILL-B license. If a copy of this license
|
|
|
|
* is not distributed with this file, you can obtain one at
|
|
|
|
* http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.txt
|
|
|
|
*
|
|
|
|
* Authors of STUdS (initial project): Guilhem BORGHESI (borghesi@unistra.fr) and Raphaël DROZ
|
|
|
|
* Authors of Framadate/OpenSondate: Framasoft (https://github.com/framasoft)
|
|
|
|
*
|
|
|
|
* =============================
|
|
|
|
*
|
|
|
|
* Ce logiciel est régi par la licence CeCILL-B. Si une copie de cette licence
|
|
|
|
* ne se trouve pas avec ce fichier vous pouvez l'obtenir sur
|
|
|
|
* http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.txt
|
|
|
|
*
|
|
|
|
* Auteurs de STUdS (projet initial) : Guilhem BORGHESI (borghesi@unistra.fr) et Raphaël DROZ
|
|
|
|
* Auteurs de Framadate/OpenSondage : Framasoft (https://github.com/framasoft)
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Application name
|
2014-12-05 01:09:14 +01:00
|
|
|
const NOMAPPLICATION = '<Application name>';
|
2014-09-04 17:52:18 +02:00
|
|
|
|
|
|
|
// Database administrator email
|
|
|
|
const ADRESSEMAILADMIN = '<email address>';
|
|
|
|
|
|
|
|
// Email for automatic responses (you should set it to "no-reply")
|
|
|
|
const ADRESSEMAILREPONSEAUTO = '<no-reply@mydomain.com>';
|
|
|
|
|
|
|
|
// Database user
|
2014-12-23 09:33:00 +01:00
|
|
|
const DB_USER= '<database user>';
|
2014-09-04 17:52:18 +02:00
|
|
|
|
|
|
|
// Database password
|
2014-12-23 09:33:00 +01:00
|
|
|
const DB_PASSWORD = '<database password>';
|
2014-09-04 17:52:18 +02:00
|
|
|
|
|
|
|
// Database server name, leave empty to use a socket
|
2014-12-23 09:33:00 +01:00
|
|
|
const DB_CONNECTION_STRING = 'mysql:host=<database host>;dbname=<database name>;port=<database port>';
|
2014-09-04 17:52:18 +02:00
|
|
|
|
2014-12-31 01:33:56 +01:00
|
|
|
// Name of the table that store migration script already executed
|
|
|
|
const MIGRATION_TABLE = 'framadate_migration';
|
|
|
|
|
2014-12-31 15:19:15 +01:00
|
|
|
// Table name prefix
|
|
|
|
const TABLENAME_PREFIX = 'fd_';
|
|
|
|
|
2014-09-04 17:52:18 +02:00
|
|
|
// Default Language using POSIX variant of BC P47 standard (choose in $ALLOWED_LANGUAGES)
|
2015-03-22 23:33:03 +01:00
|
|
|
const DEFAULT_LANGUAGE = 'fr_FR';
|
2014-09-04 17:52:18 +02:00
|
|
|
|
|
|
|
// List of supported languages, fake constant as arrays can be used as constants only in PHP >=5.6
|
|
|
|
$ALLOWED_LANGUAGES = [
|
|
|
|
'fr_FR' => 'Français',
|
|
|
|
'en_GB' => 'English',
|
|
|
|
'es_ES' => 'Español',
|
|
|
|
'de_DE' => 'Deutsch',
|
|
|
|
];
|
|
|
|
|
|
|
|
// Path to logo
|
|
|
|
const LOGOBANDEAU = '<relative path to the logo file>';
|
|
|
|
|
|
|
|
// Path to logo in PDF export
|
|
|
|
const LOGOLETTRE = '<relative path to the logo file for pdf>';
|
|
|
|
|
|
|
|
// Nom et emplacement du fichier image contenant le titre
|
|
|
|
const IMAGE_TITRE = 'images/logo-framadate.png';
|
|
|
|
|
|
|
|
// Clean URLs, boolean
|
|
|
|
const URL_PROPRE = false;
|
|
|
|
|
|
|
|
// Use REMOTE_USER data provided by web server
|
|
|
|
const USE_REMOTE_USER = true;
|
|
|
|
|
2014-12-24 23:44:40 +01:00
|
|
|
// Path to the log file
|
|
|
|
const LOG_FILE = 'admin/stdout.log';
|
|
|
|
|
2015-02-28 19:18:59 +01:00
|
|
|
// Days (after expiration date) before purge a poll
|
|
|
|
const PURGE_DELAY = 60;
|
|
|
|
|
2014-11-14 17:35:22 +01:00
|
|
|
// Config
|
|
|
|
$config = [
|
|
|
|
/* general config */
|
|
|
|
'use_smtp' => true, // use email for polls creation/modification/responses notification
|
|
|
|
/* home */
|
|
|
|
'show_what_is_that' => true, // display "how to use" section
|
|
|
|
'show_the_software' => true, // display technical information about the software
|
|
|
|
'show_cultivate_your_garden' => true, // display "developpement and administration" information
|
2015-03-29 22:13:22 +02:00
|
|
|
/* create_classic_poll.php / create_date_poll.php */
|
2014-12-23 09:33:00 +01:00
|
|
|
'default_poll_duration' => 180, // default values for the new poll duration (number of days).
|
2015-03-29 22:13:22 +02:00
|
|
|
/* create_classic_poll.php */
|
2014-12-23 09:33:00 +01:00
|
|
|
'user_can_add_img_or_link' => true, // user can add link or URL when creating his poll.
|
2014-11-14 17:35:22 +01:00
|
|
|
];
|
|
|
|
|