2017 © Pedro Peláez
 

cakephp-plugin cakephp-captcha

CakePHP Captcha Plugin

image

fm-labs/cakephp-captcha

CakePHP Captcha Plugin

  • Wednesday, March 19, 2014
  • by fm-labs
  • Repository
  • 1 Watchers
  • 0 Stars
  • 76 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

cakephp-captcha

An easy-to-use Captcha Plugin for the CakePHP Framework using Securimage PHP Captcha library, (*1)

Install

Add to your composer.json, (*2)

{
    "require": {
        "fm-labs/cakephp-captcha": "dev-master"
    }
}

or run, (*3)

$ composer require fm-labs/cakephp-captcha

Quick Setup

1) Enable Plugin, (*4)

//File: config/bootstrap.php

Plugin::load('Captcha', ['bootstrap' => true, 'routes' => true);

2) Use CaptchaWidget in forms, (*5)

//File: In any view template
$this->loadHelper('Captcha.Captcha');

$this->Form->create(null);
$this->Form->input('captcha', ['type' => 'captcha']]);
//$this->Captcha->input('captcha'); // old/deprecated method
$this->Form->submit();
$this->Form->end();

The Versions

19/03 2014

dev-dev

dev-dev

CakePHP Captcha Plugin

  Sources   Download

The Requires

 

by Florian Beisskammer

19/03 2014

dev-master

9999999-dev

CakePHP Captcha Plugin

  Sources   Download

The Requires

 

by Florian Beisskammer

19/03 2014

1.1

1.1.0.0

CakePHP Captcha Plugin

  Sources   Download

The Requires

 

by Florian Beisskammer