gbksoft / yii2-recaptcha-widget
Yii2 reCAPTCHA widget
Installs: 599
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- yiisoft/yii2: >=2.0.6
This package is not auto-updated.
Last update: 2024-11-04 12:43:57 UTC
README
Installation
Composer
The preferred way to install this extension is through Composer.
Either run
php composer.phar require gbksoft/yii2-recaptcha-widget "*"
or add
"gbksoft/yii2-recaptcha-widget": "*"
to the require section of your composer.json
Usage
Register a new site.
Add captcha attribute to model:
public $captcha; public function rules() { return [ [ 'captcha', \gbksoft\recaptcha\validators\RecaptchaValidator::class, 'secret' => '<your-secret>' ] ]; }
Add field to view:
<?= $form->field($model, 'captcha')->widget(\gbksoft\recaptcha\widgets\Recaptcha::class, [ 'clientOptions' => [ 'data-sitekey' => '<your-sitekey>' ] ]) ?>