-
Notifications
You must be signed in to change notification settings - Fork 1
/
error.php
60 lines (45 loc) · 1.56 KB
/
error.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
<?php include "includes/header.php"; ?>
<section class="center pure-g-r">
<div class="pure-u-1-5"></div>
<article class="pure-u-3-5 pure-center">
<?php
if (!isset($status)) {
$status = filter_input(INPUT_GET, 'status', FILTER_SANITIZE_NUMBER_INT);
}
$msg = array();
switch ($status) {
case 400:
$msg['title'] = $status .': Bad Request';
$msg['text'] = ' - Die Anfrage-Nachricht ist fehlerhaft aufgebaut.';
break;
case 401:
$msg['title'] = $status .': Unauthorized';
$msg['text'] = ' - Die Authentifizierung schlug fehl.';
break;
case 403:
$msg['title'] = $status .': Forbidden';
$msg['text'] = ' - Sie sind nicht berechtigt diese Ressource anzusehen.';
break;
case 404:
$msg['title'] = $status .': Not Found';
$msg['text'] = ' - Die angeforderte Ressource wurde nicht gefunden.';
break;
case 500:
$msg['title'] = $status .': Internal Server Error';
$msg['text'] = '';
break;
default:
$msg['title'] = 'Unbekannter Fehler';
$msg['text'] = '';
break;
}
?>
<p> </p>
<p class="pure-alert pure-alert-danger">
<b><i class="icon-warning-sign"></i> <?php echo $msg['title']; ?></b> <?php echo $msg['text']; ?>
</p>
<p><a href="/">Startseite</a></p>
</article>
<div class="pure-u-1-5"></div>
</section>
<?php include "includes/footer.php"; ?>