'; // Application name const NOMAPPLICATION = '{$appName|addslashes_single_quote}'; // Database administrator email const ADRESSEMAILADMIN = '{$appMail}'; // Email for automatic responses (you should set it to "no-reply") const ADRESSEMAILREPONSEAUTO = '{$responseMail}'; // Database server name, leave empty to use a socket const DB_CONNECTION_STRING = '{$dbConnectionString}'; // Database user const DB_USER= '{$dbUser}'; // Database password const DB_PASSWORD = '{$dbPassword|addslashes_single_quote}'; // Table name prefix const TABLENAME_PREFIX = '{$dbPrefix}'; // Name of the table that stores migration script already executed const MIGRATION_TABLE = '{$migrationTable}'; // Default Language const DEFAULT_LANGUAGE = '{$defaultLanguage}'; // List of supported languages, fake constant as arrays can be used as constants only in PHP >=5.6 $ALLOWED_LANGUAGES = [ 'fr' => 'Français', 'en' => 'English', 'oc' => 'Occitan', 'es' => 'Español', 'de' => 'Deutsch', 'nl' => 'Dutch', 'it' => 'Italiano', 'br' => 'Brezhoneg', ]; // Path to image file with the title const IMAGE_TITRE = 'images/logo-framadate.png'; // Clean URLs, boolean const URL_PROPRE = {if in_array($cleanUrl, array('1', 'on', 'true'))}true{else}false{/if}; // Use REMOTE_USER data provided by web server const USE_REMOTE_USER = true; // Path to the log file const LOG_FILE = 'admin/stdout.log'; // Days (after expiration date) before purging a poll const PURGE_DELAY = 60; // Max slots per poll const MAX_SLOTS_PER_POLL = 366; // Number of seconds before we allow to resend an "Remember Edit Link" email. const TIME_EDIT_LINK_EMAIL = 60; // 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 "development and administration" information /* create_classic_poll.php / create_date_poll.php */ 'default_poll_duration' => 180, // default values for the new poll duration (number of days). /* create_classic_poll.php */ 'user_can_add_img_or_link' => true, // user can add link or URL when creating his poll. 'markdown_editor_by_default' => true // The markdown editor for the description is enabled by default ];