easyappointments/application/controllers/Errors.php

41 lines
1.1 KiB
PHP
Raw Normal View History

<?php defined('BASEPATH') or exit('No direct script access allowed');
2015-12-30 13:02:14 +02:00
/* ----------------------------------------------------------------------------
* Easy!Appointments - Open Source Web Scheduler
*
* @package EasyAppointments
* @author A.Tselegidis <alextselegidis@gmail.com>
* @copyright Copyright (c) 2013 - 2020, Alex Tselegidis
2020-11-14 22:36:25 +03:00
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
* @link https://easyappointments.org
2015-12-30 13:02:14 +02:00
* @since v1.0.0
* ---------------------------------------------------------------------------- */
/**
* Errors Controller
*
* @package Controllers
*/
class Errors extends EA_Controller {
/**
* Display the 404 error page.
*/
public function index()
{
$this->error404();
2015-12-30 13:02:14 +02:00
}
/**
* Display the 404 error page.
*/
public function error404()
{
$this->load->helper('google_analytics');
2015-12-30 13:02:14 +02:00
$this->load->model('settings_model');
2015-12-30 13:02:14 +02:00
$view['company_name'] = $this->settings_model->get_setting('company_name');
2015-12-30 13:02:14 +02:00
$this->load->view('general/error404', $view);
}
}