2017 © Pedro Peláez
 

cakephp-plugin google-recaptcha

Easily use Google Recaptcha in CakePHP 3.2+ projects

image

weijihao/google-recaptcha

Easily use Google Recaptcha in CakePHP 3.2+ projects

  • Tuesday, January 9, 2018
  • by weijihao
  • Repository
  • 1 Watchers
  • 0 Stars
  • 6 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 2 Open issues
  • 19 Versions
  • 50 % Grown

The README.md

Build Status Latest Stable Version Total Downloads Latest Unstable Version License, (*1)

Integrate Google Recaptcha v2 to your CakePHP v3.2+ project

Installation

You can install this plugin into your CakePHP application using composer., (*2)

The recommended way to install composer packages is:, (*3)

composer require crabstudio/recaptcha

Or add the following lines to your application's composer.json:, (*4)

"require": {
    "crabstudio/recaptcha": "^2.0"
}

followed by the command:, (*5)

composer update

Load plugin

From command line:, (*6)

bin/cake plugin load Recaptcha

Or this line to the end of Your_project\config\bootstrap.php, (*7)

Plugin::load('Recaptcha');

Load Component and Configure

Override default configure from loadComponent:, (*8)

$this->loadComponent('Recaptcha.Recaptcha', [
    'enable' => true,     // true/false
    'sitekey' => 'your_site_key', //if you don't have, get one: https://www.google.com/recaptcha/intro/index.html
    'secret' => 'your_secret',
    'type' => 'image',  // image/audio
    'theme' => 'light', // light/dark
    'lang' => 'vi',      // default en
    'size' => 'normal'  // normal|compact|invisible
]);

Usage

Display recaptcha in your view:, (*9)

    <?= $this->Form->create()?>
    <?= $this->Form->input('email')?>
    <?= $this->Recaptcha->display()?>  // Display recaptcha box in your view, if configure enable = false, nothing to display here
    <?= $this->Form->submit()?>
    <?= $this->Form->end()?>

Verify in your controller function, (*10)

    public function forgotPassword() {
        if($this->request->is('post')){
            if($this->Recaptcha->verify()) { // if configure enable = false, always return true
                //do something here
            }
            $this->Flash->error(__('Please pass Google Recaptcha first'));
        }
    }

Invisible reCAPTCHA Configure

$this->loadComponent('Recaptcha.Recaptcha', [
    'enable' => true,     // true/false
    'sitekey' => 'your_site_key', //if you don't have, get one: https://www.google.com/recaptcha/intro/index.html
    'secret' => 'your_secret',
    'type' => 'image',  // image/audio
    'theme' => 'light', // light/dark
    'lang' => 'vi',      // default en
    'size' => 'invisible'  // normal|compact|invisible
    'callback' => 'onSubmit'
]);

your custom.js, (*11)

function onSubmit(token) {
    $("form#demo-form").submit();
}

$("button#demo-submit").click(function () {
    event.preventDefault();
    grecaptcha.execute();
});

Done, (*12)

The Versions

09/01 2018

dev-master

9999999-dev https://github.com/weijihao/recaptcha

Easily use Google Recaptcha in CakePHP 3.2+ projects

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar weijihao

cakephp bootstrap captcha google recaptcha crabstudio anhtuank7c agiletechvn

09/01 2018

dev-dev

dev-dev https://github.com/weijihao/recaptcha

Easily use Google Recaptcha in CakePHP 3.2+ projects

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar weijihao

cakephp bootstrap captcha google recaptcha crabstudio anhtuank7c agiletechvn

09/01 2018

2.0.8

2.0.8.0 https://github.com/weijihao/recaptcha

Easily use Google Recaptcha in CakePHP 3.2+ projects

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar weijihao

cakephp bootstrap captcha google recaptcha crabstudio anhtuank7c agiletechvn

09/01 2018

2.0.9

2.0.9.0 https://github.com/weijihao/recaptcha

Easily use Google Recaptcha in CakePHP 3.2+ projects

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar weijihao

cakephp bootstrap captcha google recaptcha crabstudio anhtuank7c agiletechvn

09/01 2018

2.0.7

2.0.7.0 https://github.com/crabstudio/recaptcha

Easily use Google Recaptcha in CakePHP 3.2+ projects

  Sources   Download

MIT

The Requires

 

The Development Requires

cakephp bootstrap captcha google recaptcha crabstudio anhtuank7c agiletechvn

09/01 2018

2.0.6

2.0.6.0 https://github.com/crabstudio/recaptcha

Easily use Google Recaptcha in CakePHP 3.2+ projects

  Sources   Download

MIT

The Requires

 

The Development Requires

cakephp bootstrap captcha google recaptcha crabstudio anhtuank7c agiletechvn

06/10 2017

2.0.5

2.0.5.0 https://github.com/crabstudio/recaptcha

Easily use Google Recaptcha in CakePHP 3.2+ projects

  Sources   Download

MIT

The Requires

 

The Development Requires

cakephp bootstrap captcha google recaptcha crabstudio anhtuank7c agiletechvn

07/07 2017

2.0.4

2.0.4.0 https://github.com/crabstudio/recaptcha

Easily use Google Recaptcha in CakePHP 3.2+ projects

  Sources   Download

MIT

The Requires

 

The Development Requires

cakephp bootstrap captcha google recaptcha crabstudio anhtuank7c

06/07 2017

2.0.3

2.0.3.0 https://github.com/crabstudio/recaptcha

Easily use Google Recaptcha in CakePHP 3.2+ projects

  Sources   Download

MIT

The Requires

 

The Development Requires

cakephp bootstrap captcha google recaptcha crabstudio anhtuank7c

10/04 2017

2.0.2

2.0.2.0 https://github.com/crabstudio/recaptcha

Easily use Google Recaptcha in CakePHP 3.2+ projects

  Sources   Download

MIT

The Requires

 

The Development Requires

cakephp bootstrap captcha google recaptcha crabstudio anhtuank7c

11/12 2016

2.0.1

2.0.1.0 https://github.com/crabstudio/recaptcha

Easily use Google Recaptcha in CakePHP 3.2+ projects

  Sources   Download

MIT

The Requires

 

The Development Requires

cakephp bootstrap captcha google recaptcha crabstudio anhtuank7c

28/08 2016

2.0.0

2.0.0.0 https://github.com/crabstudio/recaptcha

Easily use Google Recaptcha in CakePHP 3.2+ projects

  Sources   Download

MIT

The Requires

 

The Development Requires

cakephp bootstrap captcha google recaptcha crabstudio anhtuank7c

20/05 2016

1.0.6

1.0.6.0 https://github.com/crabstudio/recaptcha

Easily use Google Recaptcha in CakePHP 3 projects

  Sources   Download

MIT

The Requires

 

The Development Requires

cakephp bootstrap captcha google recaptcha crabstudio anhtuank7c

20/05 2016

1.0.5

1.0.5.0 https://github.com/crabstudio/recaptcha

Easily use Google Recaptcha in CakePHP 3 projects

  Sources   Download

MIT

The Requires

 

The Development Requires

cakephp bootstrap captcha google recaptcha crabstudio anhtuank7c

10/05 2016

1.0.4

1.0.4.0 https://github.com/crabstudio/recaptcha

Easily use Google Recaptcha in CakePHP 3 projects

  Sources   Download

MIT

The Requires

 

The Development Requires

cakephp bootstrap captcha google recaptcha crabstudio anhtuank7c

03/05 2016

1.0.3

1.0.3.0 https://github.com/crabstudio/recaptcha

Easily use Google Recaptcha in CakePHP 3 projects

  Sources   Download

MIT

The Requires

 

The Development Requires

cakephp bootstrap captcha google recaptcha crabstudio anhtuank7c

16/04 2016

1.0.2

1.0.2.0 https://github.com/crabstudio/recaptcha

Easily use Google Recaptcha in CakePHP 3 projects

  Sources   Download

MIT

The Requires

 

The Development Requires

cakephp bootstrap captcha google recaptcha crabstudio anhtuank7c

14/04 2016

1.0.1

1.0.1.0 https://github.com/crabstudio/recaptcha

Easily use Google Recaptcha in CakePHP 3 projects

  Sources   Download

MIT

The Requires

 

The Development Requires

cakephp bootstrap captcha google recaptcha crabstudio anhtuank7c

08/12 2015

1.0.0

1.0.0.0 https://github.com/crabstudio/recaptcha

Easily use Google Recaptcha in CakePHP 3 projects

  Sources   Download

MIT

The Requires

 

The Development Requires

cakephp bootstrap captcha google recaptcha crabstudio anhtuank7c