From ab4232fb4a09e9f6773e8990b2d9a76ad9011598 Mon Sep 17 00:00:00 2001 From: MaxBUhe Date: Tue, 27 Jun 2023 08:33:49 +0200 Subject: [PATCH] add cookiefirst to manager-list --- Application/Model/ManagerTypes.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Application/Model/ManagerTypes.php b/Application/Model/ManagerTypes.php index 7ebda76..01c9db5 100644 --- a/Application/Model/ManagerTypes.php +++ b/Application/Model/ManagerTypes.php @@ -34,6 +34,8 @@ class ManagerTypes const CONSENTMANAGER = "CONSENTMANAGER"; + const COOKIEFIRST = "COOKIEFIRST"; + /** * @return array */ @@ -45,7 +47,8 @@ class ManagerTypes "net_cookie_manager" => self::NET_COOKIE_MANAGER, "oxps_usercentrics" => self::USERCENTRICS_MODULE, "usercentrics" => self::USERCENTRICS_MANUALLY, - "consentmanager" => self::CONSENTMANAGER + "consentmanager" => self::CONSENTMANAGER, + "cookiefirst" => self::COOKIEFIRST ]; }