2024-06-03 12:02:44 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace D3\GoogleAnalytics4\Setup;
|
|
|
|
|
|
|
|
|
|
|
|
use D3\GoogleAnalytics4\Application\Model\Constants;
|
|
|
|
use OxidEsales\Eshop\Core\Registry;
|
2024-06-24 16:08:36 +02:00
|
|
|
use OxidEsales\Eshop\Core\ViewConfig;
|
2024-06-03 12:02:44 +02:00
|
|
|
|
|
|
|
class Actions
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @param string $sVarType
|
|
|
|
* @param string $sSettingName
|
|
|
|
* @param string $sSettingValue
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function d3SaveDefaultSettings(string $sVarType, string $sSettingName, string $sSettingValue){
|
|
|
|
$oConfig = Registry::getConfig();
|
|
|
|
|
2024-06-24 16:08:36 +02:00
|
|
|
if (false === ($this->d3GetModuleConfigParam($sSettingName) === $sSettingValue)){
|
|
|
|
$oConfig->saveShopConfVar(
|
|
|
|
$sVarType,
|
|
|
|
Constants::OXID_MODULE_ID.$sSettingName,
|
|
|
|
$sSettingValue,
|
|
|
|
$oConfig->getShopId(),
|
|
|
|
Constants::OXID_MODULE_ID
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $configParamName
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function d3GetModuleConfigParam(string $configParamName)
|
|
|
|
{
|
|
|
|
return Registry::get(ViewConfig::class)->d3GetModuleConfigParam($configParamName);
|
2024-06-03 12:02:44 +02:00
|
|
|
}
|
|
|
|
}
|