2020-04-22 22:48:56 +03:00
|
|
|
<?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>
|
2020-03-11 12:10:59 +03:00
|
|
|
* @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
|
|
|
|
*/
|
2020-11-16 11:29:36 +03:00
|
|
|
class Errors extends EA_Controller {
|
2020-12-05 12:55:09 +03:00
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
$this->load->helper('google_analytics');
|
|
|
|
$this->load->model('settings_model');
|
|
|
|
}
|
|
|
|
|
2017-09-06 16:22:11 +03:00
|
|
|
/**
|
|
|
|
* Display the 404 error page.
|
|
|
|
*/
|
2017-09-15 14:36:37 +03:00
|
|
|
public function index()
|
|
|
|
{
|
2020-04-22 22:48:56 +03:00
|
|
|
$this->error404();
|
2015-12-30 13:02:14 +02:00
|
|
|
}
|
|
|
|
|
2017-09-06 16:22:11 +03:00
|
|
|
/**
|
|
|
|
* Display the 404 error page.
|
|
|
|
*/
|
2017-09-15 14:36:37 +03:00
|
|
|
public function error404()
|
|
|
|
{
|
2015-12-30 13:02:14 +02:00
|
|
|
$view['company_name'] = $this->settings_model->get_setting('company_name');
|
2020-04-22 22:48:56 +03:00
|
|
|
|
2015-12-30 13:02:14 +02:00
|
|
|
$this->load->view('general/error404', $view);
|
|
|
|
}
|
|
|
|
}
|