- CodeIgniter 4 framework setup with SQL Server database config - Models: Control, Test, Dept, Result, Daily/ Monthly entry models - Controllers: Dashboard, Control, Test, Dept, Entry, Report, API endpoints - Views: CRUD pages with modal dialogs, dashboard, reports - Database: Migrations for control test and daily/monthly result tables - Legacy v1 PHP application preserved in /v1 directory - Documentation: AGENTS.md, VIEWS_RULES.md for development guidelines
43 lines
855 B
PHP
43 lines
855 B
PHP
<?php
|
|
|
|
namespace Config;
|
|
|
|
use CodeIgniter\Config\BaseConfig;
|
|
|
|
class Honeypot extends BaseConfig
|
|
{
|
|
/**
|
|
* Makes Honeypot visible or not to human
|
|
*/
|
|
public bool $hidden = true;
|
|
|
|
/**
|
|
* Honeypot Label Content
|
|
*/
|
|
public string $label = 'Fill This Field';
|
|
|
|
/**
|
|
* Honeypot Field Name
|
|
*/
|
|
public string $name = 'honeypot';
|
|
|
|
/**
|
|
* Honeypot HTML Template
|
|
*/
|
|
public string $template = '<label>{label}</label><input type="text" name="{name}" value="">';
|
|
|
|
/**
|
|
* Honeypot container
|
|
*
|
|
* If you enabled CSP, you can remove `style="display:none"`.
|
|
*/
|
|
public string $container = '<div style="display:none">{template}</div>';
|
|
|
|
/**
|
|
* The id attribute for Honeypot container tag
|
|
*
|
|
* Used when CSP is enabled.
|
|
*/
|
|
public string $containerId = 'hpc';
|
|
}
|