39 lines
1 KiB
PHP
39 lines
1 KiB
PHP
<?php defined('BASEPATH') or exit('No direct script access allowed');
|
||
|
||
/* ----------------------------------------------------------------------------
|
||
* MaketRandevu - MAKET Randevu Portalı
|
||
*
|
||
* @package EasyAppointments
|
||
* @author A.Tselegidis <alextselegidis@gmail.com>
|
||
* @copyright Copyright (c) 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();
|
||
|
||
$company_name = setting('company_name');
|
||
|
||
html_vars([
|
||
'page_title' => lang('log_out'),
|
||
'company_name' => $company_name,
|
||
]);
|
||
|
||
$this->load->view('pages/logout');
|
||
}
|
||
}
|