cloudgrayau/cleantalk
最新稳定版本:1.1.2
Composer 安装命令:
composer require cloudgrayau/cleantalk
包简介
CleanTalk Anti-Spam for Craft CMS
README 文档
README
CleanTalk Anti-Spam for Craft CMS.
Requirements
This plugin requires Craft CMS 4.0.0 or later.
Installation
composer require cloudgrayau/cleantalk
CleanTalk Overview
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.
Protection
The CleanTalk plugin protects the following services from spam and includes an optional bot detector script that offers greater spam detection.
User Registration Protection
Protects user registrations from spam.
Form Protection
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
Comment Protection
Protects comment submissions from spam. The current comment integrations are protected:
✓ Comments - https://plugins.craftcms.com/comments
✓ Custom Comments - requires custom programming
Firewall Protection
Coming soon in a later release.
Custom Protection
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
统计信息
- 总下载量: 33
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-03-14
