m1roff / yii2-recaptcha-widget
Yii2 Google reCAPTCHA v2 and v3 widget
Installs: 908
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 1
Open Issues: 0
Type:yii2-extension
Requires
- php: ^8.0
- yiisoft/yii2: ^2.0.20
- yiisoft/yii2-httpclient: *
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.10
This package is auto-updated.
Last update: 2024-10-09 01:19:50 UTC
README
Based on Google reCaptcha API 2.0 and 3.0.
Forked version of https://packagist.org/packages/himiklab/yii2-recaptcha-widget.
Installation
The preferred way to install this extension is through composer.
- Either run
composer require --prefer-dist "m1roff/yii2-recaptcha-widget" "^1.0"
-
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.
'components' => [ ReCaptchaConfig::COMPONENT_ID => [ 'class' => ReCaptchaConfig::class, 'siteKeyV2' => 'your siteKey v2', 'secretV2' => 'your secret key v2', 'siteKeyV3' => 'your siteKey v3', 'secretV3' => 'your secret key v3', ], ...
or use DI container:
'container' => [ 'definitions' => [ m1roff\yii2\recaptcha\ReCaptcha2::class => function ($container, $params, $config) { return new m1roff\yii2\recaptcha\ReCaptcha2( 'your siteKey v2', '', // default $config ); }, m1roff\yii2\recaptcha\ReCaptchaValidator2::class => function ($container, $params, $config) { return new m1roff\yii2\recaptcha\ReCaptchaValidator2( 'your secret key v2', '', // default null, // default null, // default $config ); }, ], ],
- Add
ReCaptchaValidator2
orReCaptchaValidator3
in your model, for example:
v2
public $reCaptcha; public function rules() { return [ // ... [['reCaptcha'], \m1roff\yii2\recaptcha\ReCaptchaValidator2::class, 'secret' => 'your secret key', // unnecessary if reСaptcha is already configured 'uncheckedMessage' => 'Please confirm that you are not a bot.'], ]; }
v3
public $reCaptcha; public function rules() { return [ // ... [['reCaptcha'], \m1roff\yii2\recaptcha\ReCaptchaValidator3::class, 'secret' => 'your secret key', // unnecessary if reСaptcha is already configured 'threshold' => 0.5, 'action' => 'homepage', ], ]; }
Usage
For example:
v2
<?= $form->field($model, 'reCaptcha')->widget( \m1roff\yii2\recaptcha\ReCaptcha2::class, [ 'siteKey' => 'your siteKey', // unnecessary is reCaptcha component was set up ] ) ?>
v3
<?= $form->field($model, 'reCaptcha')->widget( \m1roff\yii2\recaptcha\ReCaptcha3::class, [ 'siteKey' => 'your siteKey', // unnecessary is reCaptcha component was set up 'action' => 'homepage', ] ) ?>
or
v2
<?= \m1roff\yii2\recaptcha\ReCaptcha2::widget([ 'name' => 'reCaptcha', 'siteKey' => 'your siteKey', // unnecessary is reCaptcha component was set up 'widgetOptions' => ['class' => 'col-sm-offset-3'], ]) ?>
v3
<?= \m1roff\yii2\recaptcha\ReCaptcha3::widget([ 'name' => 'reCaptcha', 'siteKey' => 'your siteKey', // unnecessary is reCaptcha component was set up 'action' => 'homepage', 'widgetOptions' => ['class' => 'col-sm-offset-3'], ]) ?>
- NOTE: Please disable ajax validation for ReCaptcha field!