You are here

public function ConfigNamesMapper::getTypeName in Zircon Profile 8.0

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

Returns the name of the type of data the mapper encapsulates.

Return value

string The name of the type of data the mapper encapsulates.

Overrides ConfigMapperInterface::getTypeName

1 method overrides ConfigNamesMapper::getTypeName()
ConfigEntityMapper::getTypeName in core/modules/config_translation/src/ConfigEntityMapper.php
Returns the name of the type of data the mapper encapsulates.

File

core/modules/config_translation/src/ConfigNamesMapper.php, line 462
Contains \Drupal\config_translation\ConfigNamesMapper.

Class

ConfigNamesMapper
Configuration mapper base implementation.

Namespace

Drupal\config_translation

Code

public function getTypeName() {
  return $this
    ->t('Settings');
}