MaketRandevu/application/controllers/Errors.php

85 lines
2.4 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
2015-12-30 13:02:14 +02:00
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
* @link http://easyappointments.org
* @since v1.0.0
* ---------------------------------------------------------------------------- */
/**
* Errors Controller
*
2020-09-23 12:47:18 +03:00
* @property CI_Session $session
* @property CI_Loader $load
* @property CI_Input $input
* @property CI_Output $output
* @property CI_Config $config
* @property CI_Lang $lang
* @property CI_Cache $cache
* @property CI_DB_query_builder $db
* @property CI_Security $security
* @property Google_Sync $google_sync
* @property Ics_file $ics_file
* @property Appointments_Model $appointments_model
* @property Providers_Model $providers_model
* @property Services_Model $services_model
* @property Customers_Model $customers_model
* @property Settings_Model $settings_model
* @property Timezones $timezones
* @property Roles_Model $roles_model
* @property Secretaries_Model $secretaries_model
* @property Admins_Model $admins_model
* @property User_Model $user_model
*
2015-12-30 13:02:14 +02:00
* @package Controllers
*/
class Errors extends CI_Controller {
/**
* Class Constructor
*/
public function __construct()
{
parent::__construct();
$this->load->library('session');
if ($this->session->userdata('language'))
{
// Set user's selected language.
$this->config->set_item('language', $this->session->userdata('language'));
$this->lang->load('translations', $this->session->userdata('language'));
2018-01-23 12:08:37 +03:00
}
else
{
// Set the default language.
$this->lang->load('translations', $this->config->item('language'));
}
}
2015-12-30 13:02:14 +02:00
/**
* 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);
}
}