2017 © Pedro Peláez
 

craft-plugin craft-recaptcha

Google reCAPTCHA for Craft CMS

image

ctigelaar/craft-recaptcha

Google reCAPTCHA for Craft CMS

  • Wednesday, December 9, 2015
  • by ctigelaar
  • Repository
  • 1 Watchers
  • 1 Stars
  • 392 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 8 Forks
  • 0 Open issues
  • 3 Versions
  • 1 % Grown

The README.md

Google reCAPTCHA for Craft CMS

Craft plugin to dispaly Google's new reCaptcha form widget and validate responses., (*1)

Install

  1. Upload entire recaptcha directory to craft/plugins on your server.
  2. Navigate to your site's Plugin settings from the Control Panel.
  3. Click Install
  4. Click on the 'reCAPTCHA for Craft' link to enter in your reCAPTCHA site key and secret key. You can get both keys from the Google reCaptcha console.

Usage

Templates

To display a reCAPTCHA widget in any template, use {{craft.recaptcha.render()}}., (*2)

User Registration Form

To use the Recaptcha in a front-end User Registration form, simply do this:, (*3)

<form method="post" accept-charset="UTF-8" >
    {{ getCsrfInput() }}
    <input type="hidden" name="action" value="recaptcha/service/saveUser">

...and assuming it passes Recaptcha validation, the user registration will be passed along to users/saveUser, (*4)

Verification

To verify a user's input, call the plugin's verify service from your own plugin:, (*5)

$captcha = craft()->request->getPost('g-recaptcha-response');
$verified = craft()->recaptcha_verify->verify($captcha);
if($verified)
{
    //User is a person, not a robot. Go on and process the form!
} else {
    //Uh oh...its a robot. Don't process this form!
}

Roadmap

Currently this only supports the standard reCAPTCHA widget, but I hope to add some capabilities to adjust the styling and functionality., (*6)

The Versions

09/12 2015

dev-master

9999999-dev

Google reCAPTCHA for Craft CMS

  Sources   Download

The Requires

 

09/12 2015

1.0.1

1.0.1.0

Google reCAPTCHA for Craft CMS

  Sources   Download

The Requires

 

09/12 2015

1.0.0

1.0.0.0

Google reCAPTCHA for Craft CMS

  Sources   Download

The Requires