2017 © Pedro Peláez
 

yii2-extension yii2-recaptcha-widget

Yii2 Google reCAPTCHA widget

image

iamsaint/yii2-recaptcha-widget

Yii2 Google reCAPTCHA widget

  • Wednesday, December 21, 2016
  • by iamsaint
  • Repository
  • 1 Watchers
  • 0 Stars
  • 118 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 30 % 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
php composer.phar require --prefer-dist "iamsaint/yii2-recaptcha-widget" "*"

or add, (*3)

"iamsaint/yii2-recaptcha-widget" : "*"

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' => 'iamsaint\yii2\recaptcha\ReCaptcha',
        'siteKey' => 'your siteKey',
        'secret' => 'your secret key',
    ],
    ...
  • Add ReCaptchaValidator in your model, for example:
public $reCaptcha;

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

or just, (*7)

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

or simply, (*8)

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

Usage

For example:, (*9)

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

or, (*10)

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

or, (*11)

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

or simply, (*12)

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

Resources

The Versions

21/12 2016

dev-master

9999999-dev

Yii2 Google reCAPTCHA widget

  Sources   Download

MIT

The Requires

 

The Development Requires

yii2 captcha google widget recaptcha

21/12 2016

1.0.0

1.0.0.0

Yii2 Google reCAPTCHA widget

  Sources   Download

MIT

The Requires

 

The Development Requires

yii2 captcha google widget recaptcha