You are here

function hook_event_dispatcher_entity_translation_insert in Hook Event Dispatcher 8

Implements hook_entity_translation_insert().

1 call to hook_event_dispatcher_entity_translation_insert()
EntityEventTest::testEntityTranslationInsertEvent in tests/src/Unit/Entity/EntityEventTest.php
Test EntityTranslationInsertEvent.

File

./hook_event_dispatcher.module, line 196
Hook event dispatcher module.

Code

function hook_event_dispatcher_entity_translation_insert(EntityInterface $translation) {

  /** @var \Drupal\hook_event_dispatcher\Manager\HookEventDispatcherManagerInterface $manager */
  $manager = \Drupal::service('hook_event_dispatcher.manager');
  $manager
    ->register(new EntityTranslationInsertEvent($translation));
}