35 lines
1 KiB
PHP
35 lines
1 KiB
PHP
<?php defined('BASEPATH') or exit('No direct script access allowed');
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
* Easy!Appointments - Online Appointment Scheduler
|
|
*
|
|
* @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
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
use Gregwar\Captcha\CaptchaBuilder;
|
|
|
|
/**
|
|
* Captcha controller.
|
|
*
|
|
* Handles the captcha operations.
|
|
*
|
|
* @package Controllers
|
|
*/
|
|
class Captcha extends EA_Controller {
|
|
/**
|
|
* Make a request to this method to get a captcha image.
|
|
*/
|
|
public function index()
|
|
{
|
|
$builder = new CaptchaBuilder;
|
|
$builder->build();
|
|
session(['captcha_phrase' => $builder->getPhrase()]);
|
|
header('Content-type: image/jpeg');
|
|
$builder->output();
|
|
}
|
|
}
|