LingotekFakeConfigFactory.php in Lingotek Translation 3.7.x
File
tests/modules/lingotek_test/src/LingotekFakeConfigFactory.php
View source
<?php
namespace Drupal\lingotek_test;
use Drupal\Core\Config\ConfigFactory;
use Drupal\Core\Config\ConfigFactoryInterface;
use Drupal\Core\Config\ImmutableConfig;
class LingotekFakeConfigFactory extends ConfigFactory implements ConfigFactoryInterface {
public function get($name) {
$config = parent::get($name);
if ($name === 'lingotek.settings') {
if ($config instanceof LingotekFakeConfigWrapper && !$config->config instanceof ImmutableConfig) {
unset($this->cache[$name]);
$config = parent::get($name);
$config = new LingotekFakeConfigWrapper($name, $this->storage, $this->eventDispatcher, $this->typedConfigManager, $config);
$this->cache[$name] = $config;
}
elseif (!$config instanceof LingotekFakeConfigWrapper) {
$config = new LingotekFakeConfigWrapper($name, $this->storage, $this->eventDispatcher, $this->typedConfigManager, $config);
$this->cache[$name] = $config;
}
}
return $config;
}
public function getEditable($name) {
$config = parent::getEditable($name);
if ($name === 'lingotek.settings') {
if ($config instanceof LingotekFakeConfigWrapper && $config->config instanceof ImmutableConfig) {
unset($this->cache[$name]);
$config = parent::getEditable($name);
$config = new LingotekFakeConfigWrapper($name, $this->storage, $this->eventDispatcher, $this->typedConfigManager, $config);
$this->cache[$name] = $config;
}
elseif (!$config instanceof LingotekFakeConfigWrapper) {
$config = new LingotekFakeConfigWrapper($name, $this->storage, $this->eventDispatcher, $this->typedConfigManager, $config);
$this->cache[$name] = $config;
}
}
return $config;
}
}