21 lines
546 B
PHP
21 lines
546 B
PHP
<?php
|
|
register_shutdown_function(function() {
|
|
$error = error_get_last();
|
|
if ($error['type'] == E_ERROR) {
|
|
header('HTTP/1.1 500 Internal Server Error');
|
|
}
|
|
});
|
|
|
|
|
|
require_once('./controller/TestUtils.php');
|
|
//date_default_timezone_set('Europe/Amsterdam');
|
|
require_once('./controller/MVCController.php');
|
|
require_once('./controller/UserSession.php');
|
|
session_start();
|
|
$mvcController = new MVCController();
|
|
$mvcController->executeModel();
|
|
if(!isset($_POST['testaction'])){
|
|
include_once("./view/content_pagetemplate.php");
|
|
}
|
|
|
|
?>
|