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
|
|
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------------
|
2023-12-31 21:46:27 +03:00
|
|
|
|
* IFLRandevu - İzmir Fen Lisesi Randevu Portalı
|
2015-12-30 13:02:14 +02:00
|
|
|
|
*
|
|
|
|
|
* @package EasyAppointments
|
|
|
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
2021-12-18 19:43:45 +03:00
|
|
|
|
* @copyright Copyright (c) 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
|
|
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
|
|
/**
|
2021-11-06 18:21:27 +03:00
|
|
|
|
* User controller.
|
2021-10-28 15:01:17 +03:00
|
|
|
|
*
|
|
|
|
|
* Handles the user related operations.
|
2015-12-30 13:02:14 +02:00
|
|
|
|
*
|
|
|
|
|
* @package Controllers
|
|
|
|
|
*/
|
2023-11-29 12:24:09 +03:00
|
|
|
|
class User extends EA_Controller
|
|
|
|
|
{
|
2020-12-05 12:55:09 +03:00
|
|
|
|
/**
|
|
|
|
|
* User constructor.
|
|
|
|
|
*/
|
|
|
|
|
public function __construct()
|
|
|
|
|
{
|
|
|
|
|
parent::__construct();
|
2021-10-28 15:01:17 +03:00
|
|
|
|
|
|
|
|
|
$this->load->library('accounts');
|
2021-11-06 18:09:29 +03:00
|
|
|
|
$this->load->library('email_messages');
|
2020-12-05 12:55:09 +03:00
|
|
|
|
}
|
|
|
|
|
|
2015-12-30 13:02:14 +02:00
|
|
|
|
/**
|
2021-10-28 15:01:17 +03:00
|
|
|
|
* Redirect to the login page.
|
2015-12-30 13:02:14 +02:00
|
|
|
|
*/
|
2017-09-15 14:36:37 +03:00
|
|
|
|
public function index()
|
|
|
|
|
{
|
2021-12-07 12:53:59 +03:00
|
|
|
|
redirect('login');
|
2015-12-30 13:02:14 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Display the login page.
|
2023-11-29 12:24:09 +03:00
|
|
|
|
*
|
2021-12-07 12:53:59 +03:00
|
|
|
|
* @deprecated Since 1.5 Use the Login controller instead.
|
2015-12-30 13:02:14 +02:00
|
|
|
|
*/
|
2017-09-15 14:36:37 +03:00
|
|
|
|
public function login()
|
|
|
|
|
{
|
2021-12-07 12:53:59 +03:00
|
|
|
|
redirect('login');
|
2015-12-30 13:02:14 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Display the logout page.
|
2023-11-29 12:24:09 +03:00
|
|
|
|
*
|
2021-12-10 10:26:05 +03:00
|
|
|
|
* @deprecated Since 1.5 Use the Logout controller instead.
|
2015-12-30 13:02:14 +02:00
|
|
|
|
*/
|
2017-09-15 14:36:37 +03:00
|
|
|
|
public function logout()
|
|
|
|
|
{
|
2023-11-29 12:24:09 +03:00
|
|
|
|
redirect('logout');
|
2015-12-30 13:02:14 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2021-10-28 15:01:17 +03:00
|
|
|
|
* Display the password recovery page.
|
2023-11-29 12:24:09 +03:00
|
|
|
|
*
|
2021-12-10 10:41:16 +03:00
|
|
|
|
* @deprecated Since 1.5 Use the Logout controller instead.
|
2015-12-30 13:02:14 +02:00
|
|
|
|
*/
|
2017-09-15 14:36:37 +03:00
|
|
|
|
public function forgot_password()
|
|
|
|
|
{
|
2021-12-10 10:41:16 +03:00
|
|
|
|
redirect('recovery');
|
2015-12-30 13:02:14 +02:00
|
|
|
|
}
|
|
|
|
|
}
|