function hook_event_dispatcher_entity_create in Hook Event Dispatcher 8
Implements hook_entity_create().
1 call to hook_event_dispatcher_entity_create()
- EntityEventTest::testEntityCreateEvent in tests/
src/ Unit/ Entity/ EntityEventTest.php - Test EntityCreateEvent.
File
- ./
hook_event_dispatcher.module, line 174 - Hook event dispatcher module.
Code
function hook_event_dispatcher_entity_create(EntityInterface $entity) {
/** @var \Drupal\hook_event_dispatcher\Manager\HookEventDispatcherManagerInterface $manager */
$manager = \Drupal::service('hook_event_dispatcher.manager');
$manager
->register(new EntityCreateEvent($entity));
}