2017 © Pedro Peláez
 

yii2-extension yii2-recaptcha-widget

Yii2 Google reCAPTCHA widget

image

axelpal/yii2-recaptcha-widget

Yii2 Google reCAPTCHA widget

  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 77 Forks
  • 0 Open issues
  • 6 Versions
  • 0 % Grown

The README.md

Google reCAPTCHA widget for Yii2

Based on reCaptcha API 2.0., (*1)

Installation

The preferred way to install this extension is through composer., (*2)

  • Either run
composer require --prefer-dist "axelpal/yii2-recaptcha-widget" "^1.0"

or add, (*3)

"axelpal/yii2-recaptcha-widget" : "^1.0"

to the require section of your application's composer.json file., (*4)

  • Sign up for an reCAPTCHA API keys., (*5)

  • Configure the component in your configuration file (web.php). The parameters siteKey and secret are optional. But if you leave them out you need to set them in every validation rule and every view where you want to use this widget. If a siteKey or secret is set in an individual view or validation rule that would overrule what is set in the config., (*6)

'components' => [
    'reCaptcha' => [
        'name' => 'reCaptcha',
        'class' => 'himiklab\yii2\recaptcha\ReCaptcha',
        'siteKey' => 'your siteKey',
        'secret' => 'your secret key',
    ],
    ...
  • Add ReCaptchaValidator in your model, for example:
public $reCaptcha;

public function rules()
{
  return [
      // ...
      [['reCaptcha'], \himiklab\yii2\recaptcha\ReCaptchaValidator::className(), 'secret' => 'your secret key', 'uncheckedMessage' => 'Please confirm that you are not a bot.']
  ];
}

or just, (*7)

public function rules()
{
  return [
      // ...
      [[], \himiklab\yii2\recaptcha\ReCaptchaValidator::className(), 'secret' => 'your secret key']
  ];
}

or simply, (*8)

public function rules()
{
  return [
      // ...
      [[], \himiklab\yii2\recaptcha\ReCaptchaValidator::className()]
  ];
}

Usage

For example:, (*9)

<?= $form->field($model, 'reCaptcha')->widget(
    \himiklab\yii2\recaptcha\ReCaptcha::className(),
    ['siteKey' => 'your siteKey']
) ?>

or, (*10)

<?= \himiklab\yii2\recaptcha\ReCaptcha::widget([
    'name' => 'reCaptcha',
    'siteKey' => 'your siteKey',
    'widgetOptions' => ['class' => 'col-sm-offset-3']
]) ?>

or, (*11)

<?= $form->field($model, 'reCaptcha')->widget(\himiklab\yii2\recaptcha\ReCaptcha::className()) ?>

or simply, (*12)

<?= \himiklab\yii2\recaptcha\ReCaptcha::widget(['name' => 'reCaptcha']) ?>

Resources

The Versions

16/05 2017

dev-master

9999999-dev

Yii2 Google reCAPTCHA widget

  Sources   Download

MIT

The Requires

 

The Development Requires

yii2 captcha google widget recaptcha

16/05 2017

1.0.8

1.0.8.0

Yii2 Google reCAPTCHA widget

  Sources   Download

MIT

The Requires

 

The Development Requires

yii2 captcha google widget recaptcha

04/05 2017

1.0.7

1.0.7.0

Yii2 Google reCAPTCHA widget

  Sources   Download

MIT

The Requires

 

The Development Requires

yii2 captcha google widget recaptcha

10/01 2017

1.0.6

1.0.6.0

Yii2 Google reCAPTCHA widget

  Sources   Download

MIT

The Requires

 

The Development Requires

yii2 captcha google widget recaptcha

10/06 2016

1.0.5

1.0.5.0

Yii2 Google reCAPTCHA widget

  Sources   Download

MIT

The Requires

 

The Development Requires

yii2 captcha google widget recaptcha

15/02 2015

1.0.4

1.0.4.0

Yii2 Google reCAPTCHA widget

  Sources   Download

MIT

The Requires

 

yii2 captcha google widget recaptcha