summaryrefslogtreecommitdiff
path: root/web/routes/error/controller.php
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2024-03-30 12:14:42 -0400
committerFreya Murphy <freya@freyacat.org>2024-03-30 12:14:42 -0400
commit1f04b83be337cc91a3fabcf4e574e2306f3d2eaa (patch)
tree74d7d65a7047e60d1877384e3c7b0d70c7b0e49a /web/routes/error/controller.php
parentstart database (user and post), and initial barebones home page (diff)
downloadxssbook2-1f04b83be337cc91a3fabcf4e574e2306f3d2eaa.tar.gz
xssbook2-1f04b83be337cc91a3fabcf4e574e2306f3d2eaa.tar.bz2
xssbook2-1f04b83be337cc91a3fabcf4e574e2306f3d2eaa.zip
refactor
Diffstat (limited to 'web/routes/error/controller.php')
-rw-r--r--web/routes/error/controller.php20
1 files changed, 0 insertions, 20 deletions
diff --git a/web/routes/error/controller.php b/web/routes/error/controller.php
deleted file mode 100644
index 3cb2345..0000000
--- a/web/routes/error/controller.php
+++ /dev/null
@@ -1,20 +0,0 @@
-<?php /* Copyright (c) 2024 Freya Murphy */
-class ErrorController extends Controller {
-
- private $model;
-
- function __construct($model) {
- parent::__construct();
- $this->model = $model;
- }
-
- public function index() {
- parent::index();
- $data = $this->model->get_data();
- $this->view('header', $data);
- $this->app_view('error', $data);
- }
-
-}
-
-?>