public 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
File
- core/modules/config_translation/src/ConfigNamesMapper.php, line 462
Class
- ConfigNamesMapper
- Configuration mapper base implementation.
Namespace
Drupal\config_translation
Code
1 2 3 | public function getTypeName() { return $this ->t( 'Settings' ); } |
Please login to continue.