2017 © Pedro Peláez
 

yii2-extension recaptcha

Yii2 wrapper for reCAPTCHA widget

image

demi/recaptcha

Yii2 wrapper for reCAPTCHA widget

  • Monday, January 29, 2018
  • by demi
  • Repository
  • 1 Watchers
  • 1 Stars
  • 341 Installations
  • PHP
  • 2 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 4 Versions
  • 16 % Grown

The README.md

Yii2-reCAPTCHA

Yii2 wrapper for [reCAPTCHA](https://www.google.com/recaptcha/intro/index.html widget), (*1)

Installation

Run, (*2)

composer require "demi/recaptcha" "~1.0"

# Configurations

Register new reCAPTCHA API keys, (*3)

Add keys to /common/config/params.php:, (*4)

return [
    // reCAPTCHA API keys
    'reCAPTCHA.siteKey' => 'xxxxxxxxx',
    'reCAPTCHA.secretKey' => 'xxxxxxxxx',
];

In the form:, (*5)

<?= $form->field($model, 'captcha', ['enableAjaxValidation' => false])->label(false)
    ->widget('demi\recaptcha\ReCaptcha', ['siteKey' => Yii::$app->params['reCAPTCHA.siteKey']]) ?>

In the model validation rules:, (*6)

public function rules()
{
    return [
        // captcha
        [
            ['captcha'], 'demi\recaptcha\ReCaptchaValidator', 'secretKey' => Yii::$app->params['reCAPTCHA.secretKey'],
            'when' => function ($model) {
                /** @var $model self */
                return !$model->hasErrors() && Yii::$app->user->isGuest;
            }
        ],
}

The Versions

29/01 2018

dev-master

9999999-dev https://github.com/demisang/yii2-recaptcha#readme

Yii2 wrapper for reCAPTCHA widget

  Sources   Download

GNU GPL-3.0-or-later

The Requires

 

yii2 captcha widget recaptcha gcaptcha

03/08 2015

1.0.1

1.0.1.0 https://github.com/demisang/yii2-recaptcha#readme

Yii2 wrapper for reCAPTCHA widget

  Sources   Download

GNU

The Requires

 

yii2 captcha widget recaptcha gcaptcha

11/07 2015

1.0.0

1.0.0.0 https://github.com/demisang/yii2-recaptcha#readme

Yii2 wrapper for reCAPTCHA widget

  Sources   Download

GNU

The Requires

 

yii2 captcha widget recaptcha gcaptcha

10/07 2015

0.1.0

0.1.0.0 https://github.com/demisang/yii2-recaptcha#readme

Yii2 wrapper for reCAPTCHA widget

  Sources   Download

GNU

The Requires

 

yii2 captcha widget recaptcha gcaptcha