You are here

function hook_event_dispatcher_entity_insert in Hook Event Dispatcher 8

Implements hook_entity_insert().

1 call to hook_event_dispatcher_entity_insert()
EntityEventTest::testEntityInsertEvent in tests/src/Unit/Entity/EntityEventTest.php
Test EntityInsertEvent.

File

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

Code

function hook_event_dispatcher_entity_insert(EntityInterface $entity) {

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