MaxBUhe
e7d921f20e
this is the first step into manifesting "big" CMP's into own Models that require strong individualism partially
19 lignes
387 B
PHP
19 lignes
387 B
PHP
<?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;
|
|
}
|
|
} |