You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for this great module. I have two suggestions:
Can you make your private functions protected? This way I can override them from my own extension
In the Config file (CtiDigital\Configurator\Model\Component\Config) in the setConfig functions you skip existing values. But I want to set a config to NULL, now the check things that the value is already the same but it's not in the core_config_table yet. You should check if the value is available, like this: if ($value == $existingValue && $this->scopeConfig->isSetFlag($path, $scope)) {.
The text was updated successfully, but these errors were encountered:
Hi,
Thank you for this great module. I have two suggestions:
if ($value == $existingValue && $this->scopeConfig->isSetFlag($path, $scope)) {
.The text was updated successfully, but these errors were encountered: