SAE_2.02/CodeIgniter-3.1.13/application/controllers/Errors.php

17 lines
412 B
PHP
Raw Normal View History

2024-05-28 21:19:33 +02:00
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Errors extends CI_Controller {
public function __construct() {
parent::__construct();
}
public function error_404() {
$this->output->set_status_header('404');
$this->load->view('layout/header_dark');
$this->load->view('error_404');
$this->load->view('layout/footer_dark');
}
}