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;
|
|
|
|
use Framadate\Utils;
|
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-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
|
|
|
|
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
|
|
|
|
2014-12-12 13:43:43 +01:00
|
|
|
// Smarty
|
|
|
|
require_once __DIR__ . '/../../vendor/smarty/smarty/libs/Smarty.class.php';
|
|
|
|
$smarty = new \Smarty();
|
2015-01-02 00:19:56 +01:00
|
|
|
$smarty->setTemplateDir('tpl/');
|
|
|
|
$smarty->setCompileDir('tpl_c/');
|
|
|
|
$smarty->setCacheDir('cache/');
|
2014-12-12 13:43:43 +01:00
|
|
|
$smarty->caching = false;
|
|
|
|
|
|
|
|
$smarty->assign('APPLICATION_NAME', NOMAPPLICATION);
|
2014-12-16 00:02:01 +01:00
|
|
|
$smarty->assign('SERVER_URL', Utils::get_server_name());
|
2014-12-12 13:43:43 +01:00
|
|
|
$smarty->assign('TITLE_IMAGE', IMAGE_TITRE);
|
|
|
|
$smarty->assign('use_nav_js', file_exists($_SERVER['DOCUMENT_ROOT'] . '/nav/nav.js'));
|
|
|
|
$smarty->assign('lang', $lang);
|
|
|
|
$smarty->assign('langs', $ALLOWED_LANGUAGES);
|
2014-12-14 00:16:49 +01:00
|
|
|
$smarty->assign('date_format', $date_format);
|
2014-12-12 13:43:43 +01:00
|
|
|
|
2015-01-03 17:34:15 +01:00
|
|
|
function smarty_modifier_poll_url($poll_id, $admin = false) {
|
|
|
|
return Utils::getUrlSondage($poll_id, $admin);
|
|
|
|
}
|
|
|
|
|
|
|
|
function smarty_modifier_markdown($md, $clear = false) {
|
|
|
|
return Utils::markdown($md, $clear);
|
|
|
|
}
|
|
|
|
|
2014-12-12 13:43:43 +01:00
|
|
|
// End- Smarty
|
|
|
|
|
2014-12-16 00:02:01 +01:00
|
|
|
$connect = new FramaDB(DB_CONNECTION_STRING, DB_USER, DB_PASSWORD);
|
2014-09-04 17:52:18 +02:00
|
|
|
$err = 0;
|