Migration SVN

This commit is contained in:
2016-02-21 14:28:40 +01:00
commit df45f10305
1455 changed files with 20440 additions and 0 deletions

23
web/index.php Executable file
View File

@@ -0,0 +1,23 @@
<?php
require_once('../system/configuration.php');
require(PATH_SYSTEM.'core.php');
try
{
//var_dump($_SESSION['hosting']->information_hosting);
// Check access
//$_SESSION['user']->userCheckAccess(LEVEL_REGISTER);
// Template
$_SESSION['template']->loadTemplate('_contentbegin');
// Load index
$_SESSION['template']->loadTemplate('index');
// Template
$_SESSION['template']->loadTemplate('_contentend');
$_SESSION['template']->getWords(array('sql' => $_SESSION['database']->executed_req));
$_SESSION['template']->parseTemplate();
} catch (myException $error) {
$error->displayErrorMessage();
}
?>