diff options
author | Thomas Lange <code@nerdmind.de> | 2017-04-11 05:11:57 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-04-11 05:15:49 +0200 |
commit | 7a1b8f471ca133b6ca99cd4e440e6614a7c18537 (patch) | |
tree | 79e9e8fbd20db4db18e531eaa792bf20ed539ae9 /core/namespace | |
parent | 6feb5fe0d45196af4a9b2b058cefdd15f6007522 (diff) | |
download | blog-7a1b8f471ca133b6ca99cd4e440e6614a7c18537.tar.gz blog-7a1b8f471ca133b6ca99cd4e440e6614a7c18537.tar.xz blog-7a1b8f471ca133b6ca99cd4e440e6614a7c18537.zip |
Methods "error403" and "error404" has been added to the "Application" class; several files has been changed.
Diffstat (limited to 'core/namespace')
-rw-r--r-- | core/namespace/Application.php | 19 | ||||
-rw-r--r-- | core/namespace/Router.php | 2 |
2 files changed, 18 insertions, 3 deletions
diff --git a/core/namespace/Application.php b/core/namespace/Application.php index 329d56d..17cd020 100644 --- a/core/namespace/Application.php +++ b/core/namespace/Application.php @@ -137,11 +137,26 @@ class Application { } #=============================================================================== - # Exit application with + # Exit application with a custom HTTP status code #=============================================================================== public static function exit($code = 500) { http_response_code($code); - $code === 404 AND require_once ROOT.'404.php'; + exit(); + } + + #=============================================================================== + # Exit application with the 403 error page + #=============================================================================== + public static function error403() { + require_once ROOT.'403.php'; + exit(); + } + + #=============================================================================== + # Exit application with the 404 error page + #=============================================================================== + public static function error404() { + require_once ROOT.'404.php'; exit(); } } diff --git a/core/namespace/Router.php b/core/namespace/Router.php index f0e7e2a..b6221d1 100644 --- a/core/namespace/Router.php +++ b/core/namespace/Router.php @@ -57,7 +57,7 @@ class Router { } if($route_found === FALSE) { - require_once ROOT.'404.php'; + Application::error404(); } } } |