diff options
author | Thomas Lange <code@nerdmind.de> | 2021-08-04 00:40:54 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2021-08-04 00:45:48 +0200 |
commit | d1a68c763bdfa6ebbd71e2eee4ff870fed88be5f (patch) | |
tree | 0969653208b1c303be65286cb724af2a76238d91 /404.php | |
parent | 78dad732e1fd3d4a57f7fa5747624ce0be50d803 (diff) | |
download | blog-d1a68c763bdfa6ebbd71e2eee4ff870fed88be5f.tar.gz blog-d1a68c763bdfa6ebbd71e2eee4ff870fed88be5f.tar.xz blog-d1a68c763bdfa6ebbd71e2eee4ff870fed88be5f.zip |
Move error page logic into the Application class
Move the logic for generating the error pages into the Application class
to remove this ugly "require" call in the error403 and error404 methods.
Diffstat (limited to '404.php')
-rw-r--r-- | 404.php | 16 |
1 files changed, 3 insertions, 13 deletions
@@ -2,19 +2,9 @@ #=============================================================================== # INCLUDE: Initialization #=============================================================================== -require_once 'core/application.php'; +require 'core/application.php'; #=============================================================================== -# Send HTTP status code +# Show "404 Not Found" error page #=============================================================================== -http_response_code(404); - -#=============================================================================== -# Build document -#=============================================================================== -$MainTemplate = Template\Factory::build('main'); -$MainTemplate->set('NAME', '404 Not Found'); -$MainTemplate->set('HEAD', ['NAME' => $MainTemplate->get('NAME')]); -$MainTemplate->set('HTML', Template\Factory::build('404')); - -echo $MainTemplate; +Application::error404(); |