2015-10-22 00:29:20 +03:00
|
|
|
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
|
|
* Easy!Appointments - Open Source Web Scheduler
|
|
|
|
*
|
|
|
|
* @package EasyAppointments
|
|
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
2016-01-02 15:47:04 +02:00
|
|
|
* @copyright Copyright (c) 2013 - 2016, Alex Tselegidis
|
2015-10-22 00:29:20 +03:00
|
|
|
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
|
|
* @link http://easyappointments.org
|
|
|
|
* @since v1.0.0
|
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Captcha Controller
|
|
|
|
*
|
|
|
|
* @package Controllers
|
|
|
|
*/
|
|
|
|
class Captcha extends CI_Controller {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class Constructor
|
|
|
|
*/
|
|
|
|
public function __construct() {
|
|
|
|
parent::__construct();
|
|
|
|
$this->load->library('session');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Make a request to this method to get a captcha image.
|
|
|
|
*/
|
|
|
|
public function index() {
|
|
|
|
header('Content-type: image/jpeg');
|
|
|
|
$builder = new Gregwar\Captcha\CaptchaBuilder;
|
2016-01-01 21:34:42 +02:00
|
|
|
$builder->build();
|
2015-10-22 00:29:20 +03:00
|
|
|
$this->session->set_userdata('captcha_phrase', $builder->getPhrase());
|
2016-01-01 21:34:42 +02:00
|
|
|
$builder->output();
|
2015-10-22 00:29:20 +03:00
|
|
|
}
|
|
|
|
}
|