You are here

class EntityInsertEvent in Hook Event Dispatcher 3.x

Same name and namespace in other branches
  1. 8.2 modules/core_event_dispatcher/src/Event/Entity/EntityInsertEvent.php \Drupal\core_event_dispatcher\Event\Entity\EntityInsertEvent

Class EntityInsertEvent.

Hierarchy

Expanded class hierarchy of EntityInsertEvent

2 files declare their use of EntityInsertEvent
core_event_dispatcher.module in modules/core_event_dispatcher/core_event_dispatcher.module
Core event dispatcher submodule.
ExampleEntityEventSubscribers.php in examples/ExampleEntityEventSubscribers.php

File

modules/core_event_dispatcher/src/Event/Entity/EntityInsertEvent.php, line 10

Namespace

Drupal\core_event_dispatcher\Event\Entity
View source
class EntityInsertEvent extends AbstractEntityEvent {

  /**
   * {@inheritdoc}
   */
  public function getDispatcherType() : string {
    return HookEventDispatcherInterface::ENTITY_INSERT;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
AbstractEntityEvent::$entity protected property The Entity.
AbstractEntityEvent::getEntity public function Get the Entity.
AbstractEntityEvent::__construct public function AbstractEntityEvent constructor. 4
EntityInsertEvent::getDispatcherType public function Get the dispatcher type. Overrides EventInterface::getDispatcherType