easyappointments/application/controllers/Captcha.php

36 lines
1.0 KiB
PHP
Raw Normal View History

<?php defined('BASEPATH') or exit('No direct script access allowed');
/* ----------------------------------------------------------------------------
* Easy!Appointments - Open Source Web Scheduler
*
* @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
* @since v1.0.0
* ---------------------------------------------------------------------------- */
use Gregwar\Captcha\CaptchaBuilder;
/**
2021-11-06 18:21:27 +03:00
* 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();
}
}