22 lines
891 B
PHP
22 lines
891 B
PHP
<?php
|
|||
|
|
|
||
|
|
return [
|
||
|
|
/*
|
||
|
|
|--------------------------------------------------------------------------
|
||
|
|
| Policy versions
|
||
|
|
|--------------------------------------------------------------------------
|
||
|
|
|
|
||
|
|
| Plain version strings, bumped by whoever edits the corresponding legal
|
||
|
|
| page — recorded alongside every consent/acceptance so a later dispute
|
||
|
|
| ("what did the shopper actually agree to?") can be answered from the
|
||
|
|
| order/cart itself rather than a live lookup against whatever the pages
|
||
|
|
| say TODAY. Not tied to any CMS/database row on purpose — this stays a
|
||
|
|
| plain config value the same way payment.php's cart_pipeline is a plain
|
||
|
|
| cross-cutting setting, not a per-instance one.
|
||
|
|
|
|
||
|
|
*/
|
||
|
|
'privacy_policy_version' => env('LEGAL_PRIVACY_POLICY_VERSION', '2026-01-01'),
|
||
|
|
|
||
|
|
'terms_version' => env('LEGAL_TERMS_VERSION', '2026-01-01'),
|
||
|
|
];
|