sashsvamir / yii2-recaptcha-widget
Yii2 Google reCAPTCHA widget
Installs: 464
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 1
Open Issues: 0
Type:yii2-extension
Requires
This package is not auto-updated.
Last update: 2025-03-30 08:07:11 UTC
README
Widget to render google recaptcha and validate this field.
This implementaion allow to use:
- multiple widgets on one page
- also you can load page by ajax several times
Information
Now this widget extends himiklab/yii2-recaptcha-widget extension (automatic loading as depends in composer.json)
Installation
Just add extension to composer require section:
composer require sashsvamir/yii2-recaptcha-widget:"dev-master"
Setup
Setup recaptcha config common/config/main.php
:
'components' => [ // ... 'reCaptcha' => [ 'name' => 'reCaptcha', 'class' => 'sashsvamir\yii2\recaptcha\ReCaptcha', 'siteKey' => '<your site public key>', 'secret' => '<your site private key>', ], ],
To debug, use follow keys:
'siteKey' => '6LeIxAcTAAAAAJcZVRqyHh71UMIEGNQ_MXjiZKhI', 'secret' => '6LeIxAcTAAAAAGG-vFI1TnRWxMZNFuojJ4WifJWe',
see: https://developers.google.com/recaptcha/docs/faq
Using
Add ReCaptchaValidator in your model, for example:
public $verifyCode; public function rules() { return [ // ... ['verifyCode', ReCaptchaValidator::className(), 'uncheckedMessage' => 'Please confirm that you are not a bot.', // add follow lines to prevent checking recaptcha when from has errors 'when' => function ($model) { return !$model->hasErrors(); } ], ]; }
Render ReCaptcha field:
$form->field($model, 'verifyCode')->widget(\sashsvamir\yii2\recaptcha\ReCaptcha::className())->label(false);