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
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------------
|
2022-01-18 15:05:42 +03:00
|
|
|
* Easy!Appointments - Online Appointment Scheduler
|
2015-10-22 00:29:20 +03: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-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-11-06 18:21:27 +03:00
|
|
|
* Captcha controller.
|
2021-10-28 15:01:17 +03:00
|
|
|
*
|
|
|
|
* 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 {
|
2022-02-23 15:42:05 +03:00
|
|
|
/**
|
|
|
|
* Class Constructor
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
|
|
|
|
$this->load->library('captcha_builder');
|
|
|
|
}
|
|
|
|
|
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()
|
|
|
|
{
|
2023-05-03 08:21:20 +03:00
|
|
|
|
|
|
|
$this->captcha_builder->setDistortion(false);
|
|
|
|
$this->captcha_builder->setMaxBehindLines(1);
|
|
|
|
$this->captcha_builder->setMaxFrontLines(1);
|
|
|
|
$this->captcha_builder->setBackgroundColor(255,255,255);
|
|
|
|
$this->captcha_builder->build();
|
|
|
|
session(['captcha_phrase' => $this->captcha_builder->getPhrase()]);
|
2021-10-28 15:01:17 +03:00
|
|
|
header('Content-type: image/jpeg');
|
2023-05-03 08:21:20 +03:00
|
|
|
$this->captcha_builder->output();
|
2015-10-22 00:29:20 +03:00
|
|
|
}
|
|
|
|
}
|