Orlac / kohana-captcha

Captcha for Kohana 3.2+

Home Page:http://kohanaphp.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#Captcha for Kohana 3.2

This is the Captcha library ported from Kohana 3.0.x to 3.2. Very little has changed API-wise, although there have been a few changes.

##Getting Started

Instantiate a captcha:

$captcha = Captcha::instance();

Instantiate using your own config group (other than 'default'):

$captcha = Captcha::instance('myconfig');

Render a captcha:

$captcha->render();

or just:

$captcha;

Validate the captcha:

Captcha::valid($_POST['captcha']);

By default image-based captchas are rendered with HTML, the HTML is a very simple tag. If you want to handle your own rendering of the captcha simply set the first parameter for render() to FALSE:

$captcha->render(FALSE);

##Captcha Styles

  • alpha
  • basic
  • black
  • math
  • riddle
  • word

About

Captcha for Kohana 3.2+

http://kohanaphp.com


Languages

Language:PHP 100.0%