aboutsummaryrefslogtreecommitdiffstats
path: root/public/install/controller/error
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2019-08-18 21:14:58 -0500
committerJesús <heckyel@hyperbola.info>2019-08-18 21:14:58 -0500
commit2eed7b082f83630301e51f57ca8394de228a8605 (patch)
tree1d19962d22d30f99317d9276e4bae7744fc93fc2 /public/install/controller/error
downloadlibrecart-2eed7b082f83630301e51f57ca8394de228a8605.tar.lz
librecart-2eed7b082f83630301e51f57ca8394de228a8605.tar.xz
librecart-2eed7b082f83630301e51f57ca8394de228a8605.zip
first commit
Diffstat (limited to 'public/install/controller/error')
-rw-r--r--public/install/controller/error/not_found.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/public/install/controller/error/not_found.php b/public/install/controller/error/not_found.php
new file mode 100644
index 0000000..115ef69
--- /dev/null
+++ b/public/install/controller/error/not_found.php
@@ -0,0 +1,25 @@
+<?php
+class ControllerErrorNotFound extends Controller {
+ public function index() {
+ /*
+ $this->load->language('error/not_found');
+
+ $this->document->setTitle($this->language->get('heading_title'));
+
+ $data['heading_title'] = $this->language->get('heading_title');
+
+ $data['text_error'] = $this->language->get('text_error');
+
+ $data['button_continue'] = $this->language->get('button_continue');
+
+ $data['continue'] = $this->url->link('common/home');
+
+ $data['footer'] = $this->load->controller('common/footer');
+ $data['header'] = $this->load->controller('common/header');
+
+ $this->response->addHeader($this->request->server['SERVER_PROTOCOL'] . ' 404 Not Found');
+
+ $this->response->setOutput($this->load->view('error/not_found', $data));
+ */
+ }
+} \ No newline at end of file