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)
|
|
|
|
*/
|
2014-12-16 00:02:01 +01:00
|
|
|
use Framadate\FramaDB;
|
2015-04-02 23:10:41 +02:00
|
|
|
use Framadate\Repositories\RepositoryFactory;
|
2014-09-04 17:52:18 +02:00
|
|
|
|
2015-01-03 17:29:57 +01:00
|
|
|
// Autoloading of dependencies with Composer
|
|
|
|
require_once __DIR__ . '/../../vendor/autoload.php';
|
2015-03-22 23:33:03 +01:00
|
|
|
require_once __DIR__ . '/../../vendor/o80/i18n/src/shortcuts.php';
|
2015-01-03 17:29:57 +01:00
|
|
|
|
2015-01-02 00:19:56 +01:00
|
|
|
if (session_id() == '') {
|
|
|
|
session_start();
|
|
|
|
}
|
|
|
|
|
2014-09-04 17:52:18 +02:00
|
|
|
if (ini_get('date.timezone') == '') {
|
|
|
|
date_default_timezone_set('Europe/Paris');
|
|
|
|
}
|
2015-01-02 00:19:56 +01:00
|
|
|
|
2015-01-07 14:01:08 +01:00
|
|
|
define('ROOT_DIR', __DIR__ . '/../../');
|
|
|
|
|
2014-11-28 05:12:21 +01:00
|
|
|
require_once __DIR__ . '/constants.php';
|
2015-01-17 16:47:10 +01:00
|
|
|
require_once __DIR__ . '/config.php';
|
2014-11-28 05:12:21 +01:00
|
|
|
require_once __DIR__ . '/i18n.php';
|
2014-09-04 17:52:18 +02:00
|
|
|
|
2014-12-12 13:43:43 +01:00
|
|
|
// Smarty
|
2015-01-11 14:59:25 +01:00
|
|
|
require_once __DIR__ . '/smarty.php';
|
2014-12-12 13:43:43 +01:00
|
|
|
|
2015-01-11 14:59:25 +01:00
|
|
|
// Connection to database
|
2014-12-16 00:02:01 +01:00
|
|
|
$connect = new FramaDB(DB_CONNECTION_STRING, DB_USER, DB_PASSWORD);
|
2015-04-02 23:10:41 +02:00
|
|
|
RepositoryFactory::init($connect);
|
2014-09-04 17:52:18 +02:00
|
|
|
$err = 0;
|