- Full gg.deals-style UI: deal feed with filters, game pages with price history charts, rankings, vouchers, news, prepaids, subscriptions, bundles, franchises, wishlist, API docs - Real data crawlers: * gg:crawl (Steam Store API + GOG Catalog + Epic free games) * gg:catalog (252K game slugs from gg.deals sitemaps) * gg:ggdeals (per-game prices via FlareSolverr session, JSON-LD parsing) * gg:seed / gg:crawl-covers (demo seed + Steam CDN cover art) - 24/7 self-updating scheduler (scripts/scheduler_loop.php, lockfile-protected) - Tailwind v4 dark/light theme, Alpine.js, Chart.js
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';
|
|
}
|