function ConfigTranslationHooks::entityTypeAlter

Implements hook_entity_type_alter().

Attributes

#[Hook('entity_type_alter')]

File

core/modules/config_translation/src/Hook/ConfigTranslationHooks.php, line 108

Class

ConfigTranslationHooks
Hook implementations for config_translation.

Namespace

Drupal\config_translation\Hook

Code

public function entityTypeAlter(array &$entity_types) : void {
  /** @var \Drupal\Core\Entity\EntityTypeInterface[] $entity_types */
  foreach ($entity_types as $entity_type_id => $entity_type) {
    if ($entity_type->entityClassImplements(ConfigEntityInterface::class)) {
      if ($entity_type_id == 'block') {
        $class = 'Drupal\\config_translation\\Controller\\ConfigTranslationBlockListBuilder';
      }
      elseif ($entity_type_id == 'field_config') {
        $class = 'Drupal\\config_translation\\Controller\\ConfigTranslationFieldListBuilder';
        // Will be filled in dynamically, see
        // \Drupal\field\Entity\FieldConfig::linkTemplates().
        $entity_type->setLinkTemplate('config-translation-overview', $entity_type->getLinkTemplate('edit-form') . '/translate');
      }
      else {
        $class = 'Drupal\\config_translation\\Controller\\ConfigTranslationEntityListBuilder';
      }
      $entity_type->setHandlerClass('config_translation_list', $class);
      if ($entity_type->hasLinkTemplate('edit-form')) {
        $entity_type->setLinkTemplate('config-translation-overview', $entity_type->getLinkTemplate('edit-form') . '/translate');
      }
    }
  }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.