[Added] new CMP individualisation to own Model

this is the first step into manifesting "big" CMP's into own Models that require strong individualism partially
This commit is contained in:
2024-05-29 15:52:48 +02:00
parent 049454a782
commit e7d921f20e
3 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,19 @@
<?php
declare(strict_types=1);
namespace D3\GoogleAnalytics4\Application\Model\CMP;
abstract class ConsentManagementPlatformBaseModel extends \OxidEsales\Eshop\Core\Model\BaseModel implements ConsentManagementPlatformInterface
{
public string $sCMPName;
/**
* @return string
*/
public function getCMPName(): string
{
return $this->sCMPName;
}
}