You are here

public function ConfigNamesMapper::getConfigData in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/config_translation/src/ConfigNamesMapper.php \Drupal\config_translation\ConfigNamesMapper::getConfigData()

Returns an array with all configuration data.

Return value

array Configuration data keyed by configuration names.

Overrides ConfigMapperInterface::getConfigData

File

core/modules/config_translation/src/ConfigNamesMapper.php, line 432

Class

ConfigNamesMapper
Configuration mapper base implementation.

Namespace

Drupal\config_translation

Code

public function getConfigData() {
  $config_data = [];
  foreach ($this
    ->getConfigNames() as $name) {
    $config_data[$name] = $this->configFactory
      ->getEditable($name)
      ->get();
  }
  return $config_data;
}