2017 © Pedro Peláez
 

silverstripe-module silverstripe-simplequestioncaptchafield

SilverStripe Simple question captcha field

image

hubertusanton/silverstripe-simplequestioncaptchafield

SilverStripe Simple question captcha field

  • Monday, February 22, 2016
  • by hubertusanton
  • Repository
  • 1 Watchers
  • 1 Stars
  • 9 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

SilverStripe Simple question captcha field

Maintainer Contacts

Requirements

  • SilverStripe 3+

Documentation

GitHub Wiki, (*1)

Installation Instructions

  1. Place this directory in the root of your SilverStripe installation.
  2. Rename directory to simplequestioncaptchafield
  3. Visit yoursite.com/dev/build?flush=1

Usage

This is a simple user friendly captcha field with random questions a human should know the answer to to prevent spamming of forms in silverstripe., (*2)

Documentation

examples of usage:, (*3)

$obvious_questions = array(
                        'what is the answer of 1 + 1?' => '2',
                        'What is the first letter of the alphabet?' => 'a',
                        'What is the color of the sky?' => 'blue');
SimpleQuestionCaptchaField::create('SimpleCaptcha', null, '', $obvious_questions);

or, (*4)

SimpleQuestionCaptchaField::create('SimpleCaptcha', null, '');

or a simple one which i like, (*5)

SimpleQuestionCaptchaField::create('SimpleCaptcha', null, '', array(
    'Type the number <strong>TWO</strong> in numbers.' => '2',
    'Type the number <strong>THREE</strong> in numbers.' => '3',
    )
)

Help

I could use some help in making up the default obvious questions and maybe making these also suporting multiple languages., (*6)

The Versions

22/02 2016

dev-master

9999999-dev http://github.com/hubertusanton/silverstripe-simplequestioncaptchafield

SilverStripe Simple question captcha field

  Sources   Download

BSD-3-Clause

The Requires

 

by Bart van Irsel

captcha silverstripe