forked from mirrors/easyappointments
35 lines
993 B
PHP
35 lines
993 B
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.0.0
|
||
|
* ---------------------------------------------------------------------------- */
|
||
|
|
||
|
/**
|
||
|
* Logout controller.
|
||
|
*
|
||
|
* Handles the logout page functionality.
|
||
|
*
|
||
|
* @package Controllers
|
||
|
*/
|
||
|
class Logout extends EA_Controller {
|
||
|
/**
|
||
|
* Render the logout page.
|
||
|
*/
|
||
|
public function index()
|
||
|
{
|
||
|
$this->session->sess_destroy();
|
||
|
|
||
|
$this->load->view('pages/logout', [
|
||
|
'base_url' => config('base_url'),
|
||
|
'company_name' => setting('company_name')
|
||
|
]);
|
||
|
}
|
||
|
}
|