public ConfigEntityMapper::getTypeLabel()
Returns the label of the type of data the mapper encapsulates.
Return value
string The label of the type of data the mapper encapsulates.
Overrides ConfigNamesMapper::getTypeLabel
File
- core/modules/config_translation/src/ConfigEntityMapper.php, line 214
Class
- ConfigEntityMapper
- Configuration mapper for configuration entities.
Namespace
Drupal\config_translation
Code
public function getTypeLabel() { $entityType = $this->entityManager->getDefinition($this->entityType); return $entityType->getLabel(); }
Please login to continue.