PHP code example of silverstripe-terraformers / turnstile-captcha

1. Go to this page and download the library: Download silverstripe-terraformers/turnstile-captcha library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

silverstripe-terraformers / turnstile-captcha example snippets


$form->enableSpamProtection();

$form->enableSpamProtection()
    ->fields()->fieldByName('TurnstileCaptchaField')
    ->setTitle("Spam protection")
    ->setDescription("Please tick the box to prove you're a human and help us stop spam.");

CommentingController::add_extension('CommentSpamProtection');

$captchaField = $form->Fields()->fieldByName('TurnstileCaptchaField');
$captchaField->setRenderType('explicit');