2018-05-19 03:42:47 +08:00
|
|
|
<?php
|
2018-08-27 00:40:04 +08:00
|
|
|
|
2018-05-19 03:42:47 +08:00
|
|
|
return [
|
2018-08-27 02:50:08 +08:00
|
|
|
401 => [
|
2018-05-19 03:42:47 +08:00
|
|
|
'title' => 'Unauthorized Access',
|
2018-08-27 00:40:04 +08:00
|
|
|
'message' => 'Well, this is embarrassing, you are not authorized to access or perform this function. '.
|
2018-05-19 03:42:47 +08:00
|
|
|
'Click <a href=":link">here</a> to go back to the home page.',
|
|
|
|
],
|
2018-08-27 02:50:08 +08:00
|
|
|
404 => [
|
2018-05-19 03:42:47 +08:00
|
|
|
'title' => 'Page Not Found',
|
2018-08-27 00:40:04 +08:00
|
|
|
'message' => 'Well, this is embarrassing, the page you requested does not exist.'.
|
2018-05-19 03:42:47 +08:00
|
|
|
'Click <a href=":link">here</a> to go back to the home page.',
|
|
|
|
],
|
2018-08-27 02:50:08 +08:00
|
|
|
503 => [
|
2018-05-19 03:42:47 +08:00
|
|
|
'title' => 'Internal Error',
|
|
|
|
'message' => 'An Error Occured',
|
|
|
|
],
|
|
|
|
];
|