[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:
19
Application/Model/CMP/ConsentManagementPlatformBaseModel.php
Normal file
19
Application/Model/CMP/ConsentManagementPlatformBaseModel.php
Normal 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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user