add: Aggrosoft-Cookie-Consent compatibility

This commit is contained in:
Christoph Staeblein 2023-03-17 10:59:50 +01:00 committed by MaxBuhe01
parent 13df965a03
commit 0e55c3e38f
1 changed files with 5 additions and 0 deletions

View File

@ -45,6 +45,11 @@ class ViewConfig extends ViewConfig_parent
return true;
}
// Aggrosoft Cookie Consent
if (method_exists($this, "isCookieCategoryEnabled")) {
return $this->isCookieCategoryEnabled($sCookieID);
}
return false;
}