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
|
2016-08-04 22:26:37 +02:00
|
|
|
* Authors of Framadate/OpenSondage: Framasoft (https://github.com/framasoft)
|
2014-09-04 17:52:18 +02:00
|
|
|
*
|
|
|
|
* =============================
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
2018-02-19 00:18:43 +01:00
|
|
|
if (session_id() === '') {
|
2015-01-02 00:19:56 +01:00
|
|
|
session_start();
|
|
|
|
}
|
|
|
|
|
2018-02-19 00:18:43 +01:00
|
|
|
if (ini_get('date.timezone') === '') {
|
2014-09-04 17:52:18 +02:00
|
|
|
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__ . '/../../');
|
2015-09-03 08:03:37 +02:00
|
|
|
define('CONF_FILENAME', ROOT_DIR . '/app/inc/config.php');
|
2015-01-07 14:01:08 +01:00
|
|
|
|
2016-05-04 01:27:51 +02:00
|
|
|
require_once __DIR__ . '/constants.php';
|
2014-09-04 17:52:18 +02:00
|
|
|
|
2016-05-04 01:27:51 +02:00
|
|
|
if (is_file(CONF_FILENAME)) {
|
2015-09-03 08:03:37 +02:00
|
|
|
@include_once __DIR__ . '/config.php';
|
2014-12-12 13:43:43 +01:00
|
|
|
|
2015-09-03 08:03:37 +02:00
|
|
|
// Connection to database
|
2015-08-31 08:56:26 +02:00
|
|
|
$connect = new FramaDB(DB_CONNECTION_STRING, DB_USER, DB_PASSWORD);
|
|
|
|
RepositoryFactory::init($connect);
|
2015-09-03 08:03:37 +02:00
|
|
|
$err = 0;
|
|
|
|
} else {
|
|
|
|
define('NOMAPPLICATION', 'Framadate');
|
|
|
|
define('DEFAULT_LANGUAGE', 'fr');
|
|
|
|
define('IMAGE_TITRE', 'images/logo-framadate.png');
|
|
|
|
define('LOG_FILE', 'admin/stdout.log');
|
|
|
|
$ALLOWED_LANGUAGES = [
|
|
|
|
'fr' => 'Français',
|
|
|
|
'en' => 'English',
|
|
|
|
'es' => 'Español',
|
|
|
|
'de' => 'Deutsch',
|
|
|
|
'it' => 'Italiano',
|
2016-08-04 17:29:10 +02:00
|
|
|
'br' => 'Brezhoneg',
|
2015-09-03 08:03:37 +02:00
|
|
|
];
|
2015-08-31 08:56:26 +02:00
|
|
|
}
|
2015-09-03 08:03:37 +02:00
|
|
|
|
|
|
|
require_once __DIR__ . '/i18n.php';
|
|
|
|
// Smarty
|
2016-08-04 17:29:10 +02:00
|
|
|
require_once __DIR__ . '/smarty.php';
|