You are here

public function ConfigNamesMapper::getConfigNames in Drupal 9

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

Returns an array of configuration names for the mapper.

Return value

array An array of configuration names for the mapper.

Overrides ConfigMapperInterface::getConfigNames

5 calls to ConfigNamesMapper::getConfigNames()
ConfigNamesMapper::getConfigData in core/modules/config_translation/src/ConfigNamesMapper.php
Returns an array with all configuration data.
ConfigNamesMapper::getLangcode in core/modules/config_translation/src/ConfigNamesMapper.php
Returns the original language code of the configuration.
ConfigNamesMapper::hasSchema in core/modules/config_translation/src/ConfigNamesMapper.php
Checks that all pieces of this configuration mapper have a schema.
ConfigNamesMapper::hasTranslatable in core/modules/config_translation/src/ConfigNamesMapper.php
Checks if pieces of this configuration mapper have translatables.
ConfigNamesMapper::hasTranslation in core/modules/config_translation/src/ConfigNamesMapper.php
Checks whether there is already a translation for this mapper.

File

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

Class

ConfigNamesMapper
Configuration mapper base implementation.

Namespace

Drupal\config_translation

Code

public function getConfigNames() {
  return $this->pluginDefinition['names'];
}