2007-12-12 16:29:16 +00:00
|
|
|
<?php
|
2008-11-21 10:44:28 +00:00
|
|
|
if(!file_exists(dirname(__FILE__) .'/config.inc.php')) {
|
|
|
|
die("Please, create the 'config.inc.php' file. You can copy the 'config.inc.php.example' file.");
|
|
|
|
}
|
2007-12-12 16:29:16 +00:00
|
|
|
|
2008-11-21 11:02:01 +00:00
|
|
|
// 1 // First requirements part (before debug management)
|
2008-11-21 10:44:28 +00:00
|
|
|
require_once(dirname(__FILE__) .'/config.inc.php');
|
|
|
|
require_once(dirname(__FILE__) .'/constants.inc.php'); // some constants are based on variables from config file
|
2007-12-12 16:29:16 +00:00
|
|
|
|
|
|
|
|
2008-11-21 10:44:28 +00:00
|
|
|
// Debug Management using constants
|
|
|
|
if(DEBUG_MODE) {
|
|
|
|
ini_set('display_errors', '1');
|
|
|
|
ini_set('mysql.trace_mode', '1');
|
|
|
|
error_reporting(E_ALL);
|
|
|
|
} else {
|
|
|
|
ini_set('display_errors', '0');
|
|
|
|
ini_set('mysql.trace_mode', '0');
|
|
|
|
error_reporting(0);
|
2008-05-09 07:37:54 +00:00
|
|
|
}
|
|
|
|
|
2008-11-21 11:02:01 +00:00
|
|
|
// 2 // Second requirements part which could display bugs (must come after debug management)
|
2007-12-12 16:29:16 +00:00
|
|
|
require_once(dirname(__FILE__) .'/services/servicefactory.php');
|
|
|
|
require_once(dirname(__FILE__) .'/functions.inc.php');
|
|
|
|
|
2008-11-21 10:44:28 +00:00
|
|
|
|
2008-11-21 11:02:01 +00:00
|
|
|
// 3 // Third requirements part which import functions from includes/ directory
|
|
|
|
|
|
|
|
// UTF-8 functions
|
|
|
|
require_once(dirname(__FILE__) .'/includes/utf8.php');
|
|
|
|
|
|
|
|
// Translation
|
|
|
|
require_once(dirname(__FILE__) .'/includes/php-gettext/gettext.inc');
|
|
|
|
$domain = 'messages';
|
|
|
|
T_setlocale(LC_MESSAGES, $locale);
|
|
|
|
T_bindtextdomain($domain, dirname(__FILE__) .'/locales');
|
|
|
|
T_bind_textdomain_codeset($domain, 'UTF-8');
|
|
|
|
T_textdomain($domain);
|
|
|
|
|
2008-12-05 07:25:04 +00:00
|
|
|
// 4 // Session
|
2008-11-21 10:44:28 +00:00
|
|
|
session_start();
|
2008-05-10 08:59:41 +00:00
|
|
|
|
2008-12-05 07:25:04 +00:00
|
|
|
// 5 // Create mandatory services and objects
|
|
|
|
$userservice =& ServiceFactory::getServiceInstance('UserService');
|
|
|
|
$currentUser = $userservice->getCurrentObjectUser();
|
|
|
|
|
|
|
|
$templateservice =& ServiceFactory::getServiceInstance('TemplateService');
|
|
|
|
$tplVars = array();
|
|
|
|
$tplVars['currentUser'] = $currentUser;
|
|
|
|
$tplVars['userservice'] = $userservice;
|
2009-01-22 15:45:32 +00:00
|
|
|
|
|
|
|
// 6 // Force UTF-8 behaviour for server (cannot be move into top.inc.php which is not included into every file)
|
2009-02-16 12:36:45 +00:00
|
|
|
header('Content-Type: text/html; charset=utf-8');
|
2008-01-09 15:51:35 +00:00
|
|
|
?>
|