Drupal Version
Drupal 11.1
Domain module version
2.0.x-dev
Expected Behavior
Only creation domain specific configuration for the config form where it has explicitly allowed.
Actual Behavior
Can see that ConfigFactory
doGet
returns domain specific editable configuration even for configuration like core.extension
.
Steps to reproduce
Looks like it's related to the fact of having activated the "Remember domain selection" in the domain configuration UI parameters.
This keeps the current select domain in session and this might cause a few problems as we can see below.
/**
* {@inheritdoc}
*/
protected function doGet($name, $immutable = TRUE) {
// If config for 'all' domains or immutable then don't override config.
if (is_null($this->domainConfigUIManager->getSelectedDomainId())) {
return parent::doGet($name, $immutable);
}
Once the "Remembered" domain is kept in session we never get into the above code to return without instantiating a domain specific configuration.
/**
* {@inheritdoc}
*/
public function getSelectedDomainId() {
$id = NULL;
$request = $this->getRequest();
if (!is_null($request)) {
$id = $this->currentRequest->get('domain_config_ui_domain') ?? NULL;
}
if (is_null($id) && isset($_SESSION['domain_config_ui_domain'])) {
$id = $_SESSION['domain_config_ui_domain'];
}
return $id;
}
Every configuration is now being duplicated as a domain specific version when updated as long as we have that `domain_config_ui_domain` in session.