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)
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (ini_get('date.timezone') == '') {
|
|
|
|
date_default_timezone_set('Europe/Paris');
|
|
|
|
}
|
|
|
|
// Autoloading of dependencies with Composer
|
|
|
|
require_once __DIR__ . '/../../vendor/autoload.php';
|
|
|
|
|
2014-11-28 05:12:21 +01:00
|
|
|
require_once __DIR__ . '/constants.php';
|
|
|
|
require_once __DIR__ . '/i18n.php';
|
2014-09-04 17:52:18 +02:00
|
|
|
|
|
|
|
$connect = NewADOConnection(BASE_TYPE);
|
2014-11-28 05:12:21 +01:00
|
|
|
|
|
|
|
if ('pdo' === BASE_TYPE) {
|
|
|
|
$database_host = 'mysql:host='.SERVEURBASE;
|
|
|
|
} else {
|
|
|
|
$database_host = SERVEURBASE;
|
|
|
|
}
|
|
|
|
|
|
|
|
$connect->Connect($database_host, USERBASE, USERPASSWD, BASE);
|
2014-09-04 17:52:18 +02:00
|
|
|
$err = 0;
|