wiperawa / yii2-recaptcha
Installs: 10
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- google/recaptcha: ^1.2
- yiisoft/yii2: *
This package is auto-updated.
Last update: 2025-03-20 21:00:45 UTC
README
Yii2 widget and model behavior for Google Recaptcha v3.
This widget and behavior allow you to easy add reCAPTCHA v3 (invisible reCAPTCHA) by Google into your project.
Installation
The preferred way to install this extension is through composer.
Either run
$ php composer.phar require wiperawa/yii2-recaptcha "dev-master"
or add
"wiperawa/yii2-recaptcha": "dev-master"
to the require
section of your composer.json
file.
Usage
-
First of all we need to add site in google reCAPTCHA console and get SECRET and SITE keys.
-
Then we have to configure behavior for model we use:
use wiperawa\recaptcha\GoogleRecaptchaBehavior; ... class MyCoolModel extends ActiveRecord { ... public function behaviors() { return [ 'googleRecaptchaBehavior' => [ 'class' =>GoogleRecaptchaBehavior::class, 'secretKey' => 'Google reCAPTCHA Secret Key here', 'enabled' => true, //Can omit this parameter. just in case you want to temporarily switch off recaptcha 'expectedAction' => 'form_submit' //google reCAPTCHA expected action. action we expect from our form. 'scoreThreshold' => 0.5 //reCAPTCHA score treshold. Optional. default - 0.5 ], ]; } ... }
- Now when we have behavior attached to our model, we need to add widget to ActiveForm :
use wiperawa\recaptcha\GoogleRecaptchaWidget; ... <?php $form = ActiveForm::begin(...) ?> <?= $form->field($model,'recaptchaToken')-> widget(GoogleRecaptchaWidget::class,[ 'siteKey' => 'Google reCAPTCHA SITEKEY here', 'expectedAction' => 'form_submit', 'class' => 'w_google_recaptcha_widget' //Classname of input. optional ])?>
That's it! Widget will look for 'beforeSubmit' action, then receive google reCAPTCHA token, and submit form. After form submitted, behavior attach token validation, and validate input. if error happend, validator will attach error to model $errors prop.