aboutsummaryrefslogtreecommitdiffstats
path: root/403.php
blob: d0bcf87a9a519242cac48061cd0e25987ecb273d (plain)
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
<?php
#===============================================================================
# INCLUDE: Main configuration
#===============================================================================
require_once 'core/application.php';

#===============================================================================
# Send HTTP status code
#===============================================================================
http_response_code(403);

#===============================================================================
# TRY: Template\Exception
#===============================================================================
try {
	$MainTemplate = Template\Factory::build('main');
	$MainTemplate->set('NAME', '403 Forbidden');
	$MainTemplate->set('HEAD', ['NAME' => $MainTemplate->get('NAME')]);
	$MainTemplate->set('HTML', Template\Factory::build('403'));

	echo $MainTemplate;
}

#===============================================================================
# CATCH: Template\Exception
#===============================================================================
catch(Template\Exception $Exception) {
	Application::exit($Exception->getMessage());
}
?>