You are here

public function ConfigEntityMapper::getTypeLabel in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/config_translation/src/ConfigEntityMapper.php \Drupal\config_translation\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

1 method overrides ConfigEntityMapper::getTypeLabel()
ConfigFieldMapper::getTypeLabel in core/modules/config_translation/src/ConfigFieldMapper.php
Returns the label of the type of data the mapper encapsulates.

File

core/modules/config_translation/src/ConfigEntityMapper.php, line 218

Class

ConfigEntityMapper
Configuration mapper for configuration entities.

Namespace

Drupal\config_translation

Code

public function getTypeLabel() {
  $entityType = $this->entityTypeManager
    ->getDefinition($this->entityType);
  return $entityType
    ->getLabel();
}