You are here

public function ContentTranslationManager::getTranslationHandler in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/content_translation/src/ContentTranslationManager.php \Drupal\content_translation\ContentTranslationManager::getTranslationHandler()

Returns an instance of the Content translation handler.

Parameters

string $entity_type_id: The type of the entity being translated.

Return value

\Drupal\content_translation\ContentTranslationHandlerInterface An instance of the content translation handler.

Overrides ContentTranslationManagerInterface::getTranslationHandler

1 call to ContentTranslationManager::getTranslationHandler()
ContentTranslationManager::getTranslationMetadata in core/modules/content_translation/src/ContentTranslationManager.php
Returns an instance of the Content translation metadata.

File

core/modules/content_translation/src/ContentTranslationManager.php, line 45

Class

ContentTranslationManager
Provides common functionality for content translation.

Namespace

Drupal\content_translation

Code

public function getTranslationHandler($entity_type_id) {
  return $this->entityTypeManager
    ->getHandler($entity_type_id, 'translation');
}