[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:
parent
049454a782
commit
e7d921f20e
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;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,8 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace D3\GoogleAnalytics4\Application\Model\CMP;
|
||||||
|
|
||||||
|
interface ConsentManagementPlatformInterface
|
||||||
|
{
|
||||||
|
public function getCMPName();
|
||||||
|
}
|
14
Application/Model/CMP/Usercentrics.php
Normal file
14
Application/Model/CMP/Usercentrics.php
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace D3\GoogleAnalytics4\Application\Model\CMP;
|
||||||
|
|
||||||
|
|
||||||
|
use D3\GoogleAnalytics4\Application\Model\ManagerTypes;
|
||||||
|
|
||||||
|
class Usercentrics extends ConsentManagementPlatformBaseModel
|
||||||
|
{
|
||||||
|
const sCMPName = ManagerTypes::USERCENTRICS_MANUALLY;
|
||||||
|
const sAlternatename = ManagerTypes::USERCENTRICS_MODULE;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user