* @copyright Copyright (c) 2013 - 2020, Alex Tselegidis * @license https://opensource.org/licenses/GPL-3.0 - GPLv3 * @link https://easyappointments.org * @since v1.0.0 * ---------------------------------------------------------------------------- */ /** * Captcha Controller * * @package Controllers */ class Captcha extends EA_Controller { /** * Class Constructor */ public function __construct() { parent::__construct(); $this->load->library('captcha_builder'); } /** * Make a request to this method to get a captcha image. */ public function index() { header('Content-type: image/jpeg'); $this->captcha_builder->build(); $this->session->set_userdata('captcha_phrase', $this->captcha_builder->getPhrase()); $this->captcha_builder->output(); } }