public function ConfigNamesMapper::getTypeName in Drupal 8
Same name and namespace in other branches
- 9 core/modules/config_translation/src/ConfigNamesMapper.php \Drupal\config_translation\ConfigNamesMapper::getTypeName()
- 10 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 479
Class
- ConfigNamesMapper
- Configuration mapper base implementation.
Namespace
Drupal\config_translationCode
public function getTypeName() {
return $this
->t('Settings');
}