-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
215 lines (180 loc) · 6.01 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
<?php
/**
* Dispatcher général du site
*
*
*/
session_start();
ob_start();
/**
* Détermination des PATH et URL absolus pour être utilisés dans tout le site
*
* Note : tous les PATH et URL se finissent par '/'
*/
$URL_ROOT_RELATIVE = dirname($_SERVER['PHP_SELF']);
if($URL_ROOT_RELATIVE[strlen($URL_ROOT_RELATIVE) - 1] == '/') {
$URL_ROOT_RELATIVE = substr($URL_ROOT_RELATIVE, 0, -1);
}
define('URL_ROOT_RELATIVE', $URL_ROOT_RELATIVE);
//Relative URL used, calculate absolute URL
$protocol = strtolower(substr($_SERVER['SERVER_PROTOCOL'], 0, strpos($_SERVER['SERVER_PROTOCOL'], "/", 0)));
// Constante principale, c'est l'URL absolue de la base du site
define("URL_ROOT", $protocol."://".$_SERVER['HTTP_HOST'].URL_ROOT_RELATIVE.'/');
// PATH absolu de la base du site
define('DIR_ROOT', dirname($_SERVER['SCRIPT_FILENAME']) .'/');
// PATH du répertoire d'inclusions
define('DATA', DIR_ROOT.'data/');
// PATH du répertoire d'inclusions
define('INC', DIR_ROOT.'inc/');
// PATH du répertoire de librairies
define('LIB', DIR_ROOT.'lib/');
// PATH du répertoire des templates
define('TPL', DIR_ROOT.'template/');
// URL du répertoire des images
define('IMG', URL_ROOT.'img/');
// URL du répertoire des images utilisées dans les fichiers HTML
define('IMG_HTML', IMG.'img_html/');
// URL des fichiers flash
define('URL_FLASH', URL_ROOT.'flash/');
// Constante de debug SQL général
define('DEBUG_SQL', false);
set_include_path(implode(PATH_SEPARATOR, array(
INC,
LIB,
get_include_path(),
)));
// Suppression des antislashes
if (get_magic_quotes_gpc()) {
function stripslashes_deep($value)
{
$value = is_array($value) ?
array_map('stripslashes_deep', $value) :
stripslashes($value);
return $value;
}
$_POST = array_map('stripslashes_deep', $_POST);
$_GET = array_map('stripslashes_deep', $_GET);
$_COOKIE = array_map('stripslashes_deep', $_COOKIE);
}
// Fichier de paramétrage
require_once(INC.'constantes.inc.php');
// Fonctions MySQL
require_once(INC.'db.inc.php');
// Fonctions générales
require_once(INC.'fonctions.inc.php');
// i18n functions
require_once(INC.'i18n.inc.php');
// Extending GD functions
require_once(INC.'gd.inc.php');
// Fonctions liées aux pages
require_once(INC.'page.inc.php');
// Fonctions système de fichier
require_once(INC.'files.inc.php');
// Fonctions envoi de mail
require_once(INC.'PHPMailer/class.phpmailer.php');
// Fonctions html
require_once(INC.'html.class.php');
//Includes classes
require_once('data/db_object.class.php');
require_once( DATA.'order_type/iorder.php');
require_once( INC.'borderlines.inc.php');
$flag_action = false;
if(! mysql_uconnect(DB_HOST, DB_USER, DB_PASS, DB_BASE)) {
//$data_include['dsp'] = 'error_db.php';
$data_include['title'] = 'Base de donnée inaccessible';
$data_include['tpl'] = 'pagelayout_error.tpl.php';
$data_include['dsp'] = false;
}else {
mysql_uquery("SET NAMES 'utf8'");
if(is_admin()) {
error_reporting(E_ALL);
}
if(isset($_GET[PARAM_PAGE])) {
$PAGE_CODE = $_GET[PARAM_PAGE];
unset($_GET[PARAM_PAGE]);
}else {
$PAGE_CODE = PAGE_DEFAUT;
}
$CURRENT_PAGE = Page::db_get_page_by_code( $PAGE_CODE );
if($CURRENT_PAGE) {
//Origin & Mail
$redirect = false;
if(!isset($_SESSION['origin'])) {
$_SESSION['origin'] = 'site';
}
if(isset($_GET['origin']) && count($_POST) == 0) {
$redirect = true;
$_SESSION['origin'] = $_GET['origin'];
unset($_GET['origin']);
}
if(isset($_GET['email']) && !Member::get_logged_user()) {
if($member = Member::db_get_membre_by_email($_GET['email'])) {
if($member->get_niveau() == 0) {
$redirect = true;
unset($_GET['email']);
Member::set_current_user_id($member->get_id());
}
}
}
if($redirect) {
redirect(get_page_url($PAGE_CODE, true, $_GET));
}
//TPL
if(!$CURRENT_PAGE->get_tpl()) {
//Template par defaut
$CURRENT_PAGE->set_tpl(PAGELAYOUT_DEFAUT);
$_SESSION['current_tpl'] = PAGELAYOUT_DEFAUT;
}else {
if($CURRENT_PAGE->get_tpl() == "SESSION_PAGELAYOUT" && isset($_SESSION['current_tpl']) && $_SESSION['current_tpl'] != '') {
$CURRENT_PAGE->set_tpl($_SESSION['current_tpl']);
}else {
$_SESSION['current_tpl'] = $CURRENT_PAGE->get_tpl_file();
}
}
if($CURRENT_PAGE->get_login_required() && !is_logged_in()
|| $CURRENT_PAGE->get_admin_required() && !is_admin()) {
$_SESSION['sess']['url_redirect'] = $_SERVER['REQUEST_URI'];
page_redirect(PAGE_LOGIN);
}
}else {
$PAGE_CODE = PAGE_ERROR;
$CURRENT_PAGE = Page::db_get_page_by_code( $PAGE_CODE );
}
}
$CURRENT_USER = Member::get_current_user();
//setlocale( LC_TIME, 'en_US.UTF8');
$locale = null;
if( isset($_POST['setlocale']) ) {
$locale = $_POST['locale'];
}else {
if( isset($_COOKIE['locale']) ) {
$locale = $_COOKIE['locale'];
}elseif( isset( $_SERVER['HTTP_ACCEPT_LANGUAGE'] )) {
$locale = str_replace( '-', '_', array_pop( array_reverse( explode( ',', $_SERVER['HTTP_ACCEPT_LANGUAGE']) ) ) );
}
}
if( !in_array( $locale, $locale_array = explode(',', LOCALES ) ) ) {
$locale = $locale_array[0];
}
setcookie("locale", $locale, time() + 30 * 24 * 3600);
define('LOCALE', $locale);
$i18n_replacements = load_translations( $locale );
setlocale(LC_ALL, $locale . '.utf8' );
define('PAGE_CODE', $PAGE_CODE);
// ACT
if($CURRENT_PAGE->get_act()) {
require($CURRENT_PAGE->get_act());
}
//DSP
if($CURRENT_PAGE->get_dsp()) {
$PAGE_TITRE = '';
$PAGE_CONTENU = ob_get_clean();
ob_start();
require($CURRENT_PAGE->get_dsp());
$PAGE_CONTENU = $PAGE_CONTENU . ob_get_clean();
require(TPL.$CURRENT_PAGE->get_tpl_file());
}
if(DEBUG_SQL){
mysql_log();
}
?>