2020-08-04 11:25:22 +00:00
|
|
|
<?php
|
|
|
|
|
2021-06-08 09:52:11 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2020-08-04 11:25:22 +00:00
|
|
|
namespace Config;
|
2020-05-27 18:46:16 +02:00
|
|
|
|
|
|
|
use CodeIgniter\Config\BaseConfig;
|
|
|
|
|
|
|
|
class Honeypot extends BaseConfig
|
|
|
|
{
|
2020-06-10 15:00:12 +00:00
|
|
|
/**
|
|
|
|
* Makes Honeypot visible or not to human
|
|
|
|
*/
|
2021-05-18 17:16:36 +00:00
|
|
|
public bool $hidden = true;
|
2021-04-02 17:20:02 +00:00
|
|
|
|
2020-06-10 15:00:12 +00:00
|
|
|
/**
|
|
|
|
* Honeypot Label Content
|
|
|
|
*/
|
2021-05-18 17:16:36 +00:00
|
|
|
public string $label = 'Fill This Field';
|
2020-05-27 18:46:16 +02:00
|
|
|
|
2020-06-10 15:00:12 +00:00
|
|
|
/**
|
|
|
|
* Honeypot Field Name
|
|
|
|
*/
|
2021-05-18 17:16:36 +00:00
|
|
|
public string $name = 'honeypot';
|
2020-05-27 18:46:16 +02:00
|
|
|
|
2020-06-10 15:00:12 +00:00
|
|
|
/**
|
|
|
|
* Honeypot HTML Template
|
|
|
|
*/
|
2021-05-18 17:16:36 +00:00
|
|
|
public string $template = '<label>{label}</label><input type="text" name="{name}" value=""/>';
|
2021-04-02 17:20:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Honeypot container
|
|
|
|
*/
|
2021-05-18 17:16:36 +00:00
|
|
|
public string $container = '<div style="display:none">{template}</div>';
|
2020-05-27 18:46:16 +02:00
|
|
|
}
|