forked from mirrors/easyappointments
83 lines
2.5 KiB
PHP
83 lines
2.5 KiB
PHP
<?php defined('BASEPATH') or exit('No direct script access allowed');
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
* Easy!Appointments - Open Source Web Scheduler
|
|
*
|
|
* @package EasyAppointments
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
|
* @copyright Copyright (c) 2013 - 2020, Alex Tselegidis
|
|
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
* @link https://easyappointments.org
|
|
* @since v1.4.0
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
/**
|
|
* Class MY_Controller
|
|
*
|
|
* @property CI_Benchmark $benchmark
|
|
* @property CI_Cache $cache
|
|
* @property CI_Calendar $calendar
|
|
* @property CI_Config $config
|
|
* @property CI_DB_forge $dbforge
|
|
* @property CI_DB_query_builder $db
|
|
* @property CI_DB_utility $dbutil
|
|
* @property CI_Email $email
|
|
* @property CI_Encrypt $encrypt
|
|
* @property CI_Encryption $encryption
|
|
* @property CI_Exceptions $exceptions
|
|
* @property CI_Hooks $hooks
|
|
* @property CI_Input $input
|
|
* @property CI_Lang $lang
|
|
* @property CI_Loader $load
|
|
* @property CI_Log $log
|
|
* @property CI_Migration $migration
|
|
* @property CI_Output $output
|
|
* @property CI_Profiler $profiler
|
|
* @property CI_Router $router
|
|
* @property CI_Security $security
|
|
* @property CI_Session $session
|
|
* @property CI_Upload $upload
|
|
* @property CI_URI $uri
|
|
*
|
|
* @property Admins_model $admins_model
|
|
* @property Appointments_model $appointments_model
|
|
* @property Consents_model $consents_model
|
|
* @property Customers_model $customers_model
|
|
* @property Providers_model $providers_model
|
|
* @property Roles_model $roles_model
|
|
* @property Secretaries_model $secretaries_model
|
|
* @property Services_model $services_model
|
|
* @property Settings_model $settings_model
|
|
* @property User_model $user_model
|
|
*
|
|
* @property Availability $availability
|
|
* @property Google_Sync $google_sync
|
|
* @property Ics_file $ics_file
|
|
* @property Notifications $notifications
|
|
* @property Synchronization $synchronization
|
|
* @property Timezones $timezones
|
|
*/
|
|
class EA_Controller extends CI_Controller {
|
|
/**
|
|
* EA_Controller constructor.
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
|
|
$this->configure_language();
|
|
}
|
|
|
|
/**
|
|
* Configure the language.
|
|
*/
|
|
private function configure_language()
|
|
{
|
|
if ($this->session->has_userdata('language'))
|
|
{
|
|
$this->config->set_item('language', $this->session->userdata('language'));
|
|
}
|
|
|
|
$this->lang->load('translations');
|
|
}
|
|
}
|