rattler / honeypot-bundle
Rattler Honeypot Bundle
2.0.1
2016-06-15 15:39 UTC
Requires
- php: >=5.3.3
- symfony/form: ~2.3|~3.0
- symfony/framework-bundle: ~2.3|~3.0
- symfony/validator: ~2.3|~3.0
This package is auto-updated.
Last update: 2024-09-11 03:05:45 UTC
README
一个提供非常简单的隐形 HoneyPot 表单类型的 Symfony 扩展包
对于 Symfony 2,请使用版本 1.0。
安装
将扩展包添加到 composer.json 文件中
"require": {
// ...
"rattler/honeypot-bundle": "~2.0",
}
启用 RattlerHoneypotBundle
// config/bundles.php
return [
// ...
Rattler\HoneypotBundle\RattlerHoneypotBundle::class => ['all' => true],
];
使用方法
将以下内容添加到现有表单中。
$builder->add('text', HoneypotType::class);
字段的名称可以更改为任何内容(通用名称似乎效果更好)。