2020-04-22 22:48:56 +03:00
|
|
|
<?php defined('BASEPATH') or exit('No direct script access allowed');
|
2015-10-22 00:29:20 +03:00
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
|
|
* Easy!Appointments - Open Source Web Scheduler
|
|
|
|
*
|
|
|
|
* @package EasyAppointments
|
|
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
2020-03-11 12:10:59 +03:00
|
|
|
* @copyright Copyright (c) 2013 - 2020, Alex Tselegidis
|
2020-11-14 22:36:25 +03:00
|
|
|
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
|
|
* @link https://easyappointments.org
|
2015-10-22 00:29:20 +03:00
|
|
|
* @since v1.0.0
|
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
2021-10-28 15:01:17 +03:00
|
|
|
use Gregwar\Captcha\CaptchaBuilder;
|
|
|
|
|
2015-10-22 00:29:20 +03:00
|
|
|
/**
|
2021-10-28 15:01:17 +03:00
|
|
|
* Captcha controller
|
|
|
|
*
|
|
|
|
* Handles the captcha operations.
|
2015-10-22 00:29:20 +03:00
|
|
|
*
|
|
|
|
* @package Controllers
|
|
|
|
*/
|
2020-11-16 11:29:36 +03:00
|
|
|
class Captcha extends EA_Controller {
|
2015-10-22 00:29:20 +03:00
|
|
|
/**
|
|
|
|
* Make a request to this method to get a captcha image.
|
|
|
|
*/
|
2017-09-15 14:36:37 +03:00
|
|
|
public function index()
|
|
|
|
{
|
2021-10-28 15:01:17 +03:00
|
|
|
$builder = new CaptchaBuilder;
|
2016-01-01 21:34:42 +02:00
|
|
|
$builder->build();
|
2021-10-28 15:01:17 +03:00
|
|
|
session(['captcha_phrase' => $builder->getPhrase()]);
|
|
|
|
header('Content-type: image/jpeg');
|
2016-01-01 21:34:42 +02:00
|
|
|
$builder->output();
|
2015-10-22 00:29:20 +03:00
|
|
|
}
|
|
|
|
}
|