CleanTalk Anti-Spam for Craft CMS.
This plugin requires Craft CMS 4.0.0 or later.
composer require cloudgrayau/cleantalk
CleanTalk is an anti-spam utility for protecting forms, user registrations and comments in Craft CMS.
A valid API key from the CleanTalk Service is required to use this plugin.
The CleanTalk plugin protects the following services from spam and includes an optional bot detector script that offers greater spam detection.
Protects user registrations from spam.
Protects form submissions from spam. The current form integrations are protected:
✓ Formie - https://plugins.craftcms.com/formie
✓ Freeform - https://plugins.craftcms.com/freeform
✓ Contact Form - https://plugins.craftcms.com/contact-form
✓ Wheel Form (> 4.0.2) - https://plugins.craftcms.com/wheelform
✓ Express Forms (no longer maintained) - https://plugins.craftcms.com/express-forms
✓ Custom Forms - requires custom programming
Protects comment submissions from spam. The current comment integrations are protected:
✓ Comments - https://plugins.craftcms.com/comments
✓ Custom Comments - requires custom programming
Coming soon in a later release.
Any form or comment logic can be protected by CleanTalk via a custom plugin/module controller.
<?php
$params = [
'name' => '<NAME>',
'email' => '<EMAIL>',
'phone' => '<PHONE>',
'message' => '<MESSAGE>'
];
if (\cloudgrayau\cleantalk\Cleantalk::checkSpam($params)){ /* passed */
} else { /* failed */
$errormsg = \cloudgrayau\cleantalk\Cleantalk::$plugin->antiSpam->error;
}
?>
Brought to you by Cloud Gray Pty Ltd