@mably
I have enables the configuration Remember domain selection setting.
suraj3310 → created an issue.
I was using drupal 11 and i got this same error on import configuration.
1. What i did is i remove the dependency of domain.record from these config files.
system.action.domain_access_all_action.yml
system.action.domain_access_edit_all_action.yml
system.action.domain_access_edit_none_action.yml
system.action.domain_access_none_action.yml
Then do the cim and it works.
2. For new set up what i did is i add the not empty condition in calculateDependencies function in DomainAccessActionBase.php file.
Below is the code
Before :
public function calculateDependencies() {
if (isset($this->configuration['domain_id'])) {
$prefix = $this->entityType->getConfigPrefix() . '.';
$this->addDependency('config', $prefix . $this->configuration['domain_id']);
}
return $this->dependencies;
}
After :
public function calculateDependencies() {
if (isset($this->configuration['domain_id']) && !empty($this->configuration['domain_id'])) {
$prefix = $this->entityType->getConfigPrefix() . '.';
$this->addDependency('config', $prefix . $this->configuration['domain_id']);
}
return $this->dependencies;
}
Then i install the domain access module.
It do not add dependency of domain record in system action configuration.
I added this patch now it is working please review.
suraj3310 → created an issue.
suraj3310 → created an issue.
I did some changes it works. Here is the updated code.
filename : DomainEntityUi.php
namespace Drupal\domain_entity\Form;
use Drupal\Core\Config\ConfigFactoryInterface;
use Drupal\Core\Form\ConfigFormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Url;
use Drupal\domain_entity\DomainEntityMapper;
use Drupal\Core\Config\TypedConfigManagerInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Provides a form to configure domain field mappings.
*/
class DomainEntityUi extends ConfigFormBase {
/**
* The domain entity mapper.
*
* @var \Drupal\domain_entity\DomainEntityMapper
*/
protected $mapper;
/**
* Creates a new DomainEntityUi object.
*
* @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
* The factory for configuration objects.
* @param \Drupal\domain_entity\DomainEntityMapper $mapper
* The domain entity mapper.
* @param \Drupal\Core\Config\TypedConfigManagerInterface $typedConfigManager
* The typed config manager.
*/
public function __construct(ConfigFactoryInterface $config_factory, DomainEntityMapper $mapper,TypedConfigManagerInterface $typedConfigManager) {
parent::__construct($config_factory, $typedConfigManager);
$this->mapper = $mapper;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static(
$container->get('config.factory'),
$container->get('domain_entity.mapper'),
$container->get('config.typed')
);
}
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'domain_entity_ui';
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$config = $this->config('domain_entity.settings');
$form['bypass_access_conditions'] = [
'#title' => $this->t('Disable access rules from this module. (You can use this settings to disable the query alter, for troubleshooting)'),
'#type' => 'checkbox',
'#description' => $this->t('When this checkbox is checked, your entities must be accessible on all domains'),
'#default_value' => $config->get('bypass_access_conditions'),
'#weight' => -50,
];
$default_values = [];
foreach ($this->mapper->getEnabledEntityTypes() as $type_id => $entity_type) {
$default_values[$type_id] = $type_id;
}
$form['entity_types'] = [
'#type' => 'tableselect',
'#title' => $this->t('Activate domain access on entity types'),
'#header' => [
'type' => $this->t('Entity type'),
'operations' => $this->t('Operations'),
],
'#default_value' => $default_values,
'#js_select' => FALSE,
];
$rows = [];
$entity_types = $this->mapper->getEntityTypes();
foreach ($entity_types as $entity_type_id => $definition) {
$enabled = !empty($default_values[$entity_type_id]);
$links = [];
if ($enabled) {
$links = [
'configure' => [
'title' => $this->t('Configure'),
'url' => Url::fromRoute('domain_entity.settings', [
'entity_type_id' => $entity_type_id,
]),
],
];
}
$rows[$entity_type_id] = [
'type' => $definition->getLabel(),
'operations' => [
'data' => [
'#type' => 'operations',
'#links' => $links,
],
],
];
}
$form['entity_types']['#options'] = $rows;
// @todo Port active domain UI effects.
return parent::buildForm($form, $form_state);
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
$config = $this->config('domain_entity.settings');
$config
->set('bypass_access_conditions', $form_state->getValue('bypass_access_conditions'))
->save();
$entity_types = $form_state->getValue('entity_types');
$all_types = $this->mapper->getEntityTypes();
$enabled_types = $this->mapper->getEnabledEntityTypes();
$results = [
'create' => [],
'delete' => [],
];
foreach ($all_types as $entity_type_id => $entity_type) {
if (empty($entity_types[$entity_type_id])) {
if (isset($enabled_types[$entity_type_id])) {
$results['delete'][] = $entity_type_id;
}
}
elseif (!isset($enabled_types[$entity_type_id])) {
$results['create'][] = $entity_type_id;
}
}
// Process results.
// @todo Add batch to create/delete field storage configs.
foreach ($results as $action => $types) {
if ($action == 'delete') {
foreach ($types as $type) {
$this->mapper->deleteFieldStorage($type);
}
}
elseif ($action == 'create') {
foreach ($types as $type) {
$this->mapper->createFieldStorage($type);
}
}
}
parent::submitForm($form, $form_state);
}
/**
* {@inheritdoc}
*/
protected function getEditableConfigNames() {
return ['domain_entity.settings'];
}
}