2017 © Pedro Peláez
 

cakephp-plugin honeypot-captcha

Plugin for CakePHP 2.x to use a Honeypot Captcha

image

domingosjunior87/honeypot-captcha

Plugin for CakePHP 2.x to use a Honeypot Captcha

  • Tuesday, September 12, 2017
  • by domingosjunior87
  • Repository
  • 1 Watchers
  • 0 Stars
  • 388 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 6 Versions
  • 33 % Grown

The README.md

HoneypotCaptcha

Plugin for CakePHP 2.x to use a Honeypot Captcha, (*1)

Requirements

  • PHP 5.3+
  • CakePHP 2.X

Installation

In your app directory type, (*2)

composer require domingosjunior87/honeypot-captcha

Setup

In app/Config/bootstrap.php add:, (*3)

CakePlugin::load('HoneypotCaptcha');

Usage

In controller, import the component and the helper, like this:, (*4)

public $components = array(
    'HoneypotCaptcha.Honeypot' => array(
        'text' => array('email_user', 'email_admin'),
        'checkbox' => array('validate_submit', 'validate_form'),
        'hidden' => array('phone_number'),
        'errorMessage' => "Error message"
    )
);

public $helpers = array('HoneypotCaptcha.Honeypot');

In view, just put this, inside a form tag:, (*5)

echo $this->Honeypot->render();

When submit the form, validate data:, (*6)

if (!$this->Honeypot->validate()) {
    return $this->redirect(array('action' => 'index'));
}

The Versions

12/09 2017

dev-master

9999999-dev

Plugin for CakePHP 2.x to use a Honeypot Captcha

  Sources   Download

MIT

The Requires

 

plugin cakephp captcha honeypot

12/09 2017

0.1.3

0.1.3.0

Plugin for CakePHP 2.x to use a Honeypot Captcha

  Sources   Download

MIT

The Requires

 

plugin cakephp captcha honeypot

12/09 2017

dev-develop

dev-develop

Plugin for CakePHP 2.x to use a Honeypot Captcha

  Sources   Download

MIT

The Requires

 

plugin cakephp captcha honeypot

30/08 2017

0.1.2

0.1.2.0

Plugin for CakePHP 2.x to use a Honeypot Captcha

  Sources   Download

MIT

The Requires

 

plugin cakephp captcha honeypot

30/08 2017

0.1.1

0.1.1.0

Plugin for CakePHP 2.x to use a Honeypot Captcha

  Sources   Download

The Requires

 

plugin cakephp captcha honeypot

29/08 2017

0.1.0

0.1.0.0

Plugin for CakePHP 2.x to use a Honeypot Captcha

  Sources   Download

The Requires

 

plugin cakephp captcha honeypot