Events in Drupal 10
Same name and namespace in other branches
- 8 core/core.api.php \events
- 9 core/core.api.php \events
Overview of event dispatch and subscribing
Introduction and terminology
Events allow different components of the system to interact and communicate with each other. One system component dispatches the event at an appropriate time; many events are dispatched by Drupal core and the Symfony event system in every request. Other system components can register as event subscribers; when an event is dispatched, a method is called on each registered subscriber, allowing each one to react. For more on the general concept of events, see http://symfony.com/doc/current/components/event_dispatcher/introduction....
Dispatching events
To dispatch an event, call the \Symfony\Contracts\EventDispatcher\EventDispatcherInterface::dispatch() method on the 'event_dispatcher' service (see the Services topic for more information about how to interact with services). The first argument is the unique event name, which you should normally define as a constant in a separate static class (see \Symfony\Component\HttpKernel\KernelEvents and \Drupal\Core\Config\ConfigEvents for examples). The second argument is a \Drupal\Component\EventDispatcher\Event object; normally you will need to extend this class, so that your event class can provide data to the event subscribers.
Registering event subscribers
Here are the steps to register an event subscriber:
- Define a service in your module, tagged with 'event_subscriber' (see the Services topic for instructions).
- Define a class for your subscriber service that implements \Symfony\Component\EventDispatcher\EventSubscriberInterface
- In your class, the getSubscribedEvents method returns a list of the events this class is subscribed to, and which methods on the class should be called for each one. Example:
public static function getSubscribedEvents() {
// Subscribe to kernel terminate with priority 100.
$events[KernelEvents::TERMINATE][] = array('onTerminate', 100);
// Subscribe to kernel request with default priority of 0.
$events[KernelEvents::REQUEST][] = array('onRequest');
return $events;
}
- Write the methods that respond to the events; each one receives the event object provided in the dispatch as its one argument. In the above example, you would need to write onTerminate() and onRequest() methods.
Note that in your getSubscribedEvents() method, you can optionally set the priority of your event subscriber (see terminate example above). Event subscribers with higher priority numbers get executed first; the default priority is zero. If two event subscribers for the same event have the same priority, the one defined in a module with a lower module weight will fire first. Subscribers defined in the same services file are fired in definition order. If order matters defining a priority is strongly advised instead of relying on these two tie breaker rules as they might change in a minor release.
File
- core/
core.api.php, line 2492 - Documentation landing page and topics, plus core library hooks.
Constants
Name | Location | Description |
---|---|---|
AccountEvents:: |
core/ |
Name of the event fired when the current user is set. |
BlockContentEvents:: |
core/ |
Name of the event when getting the dependency of a non-reusable block. |
ConfigEvents:: |
core/ |
Name of event fired to collect information on all config collections. |
ConfigEvents:: |
core/ |
Name of the event fired when deleting a configuration object. |
ConfigEvents:: |
core/ |
Name of the event fired when importing configuration to target storage. |
ConfigEvents:: |
core/ |
Name of the event fired when validating imported configuration. |
ConfigEvents:: |
core/ |
Name of the event fired when renaming a configuration object. |
ConfigEvents:: |
core/ |
Name of the event fired when saving a configuration object. |
ConfigEvents:: |
core/ |
Name of the event fired when the export storage is used. |
ConfigEvents:: |
core/ |
Name of the event fired just before importing configuration. |
EntityTypeEvents:: |
core/ |
The name of the event triggered when a new entity type is created. |
EntityTypeEvents:: |
core/ |
The name of the event triggered when an existing entity type is deleted. |
EntityTypeEvents:: |
core/ |
The name of the event triggered when an existing entity type is updated. |
FieldStorageDefinitionEvents:: |
core/ |
Name of the event triggered for field storage definition creation. |
FieldStorageDefinitionEvents:: |
core/ |
Name of the event triggered for field storage definition deletion. |
FieldStorageDefinitionEvents:: |
core/ |
Name of the event triggered for field storage definition update. |
LanguageConfigOverrideEvents:: |
core/ |
The name of the event fired when deleting the configuration override. |
LanguageConfigOverrideEvents:: |
core/ |
The name of the event fired when saving the configuration override. |
LayoutBuilderEvents:: |
core/ |
Name of the event fired when a component's render array is built. |
LocaleEvents:: |
core/ |
The name of the event fired when saving a translated string. |
MigrateEvents:: |
core/ |
Name of the event fired when saving a message to the ID map. |
MigrateEvents:: |
core/ |
Name of the event fired when removing an entry from a migration's map. |
MigrateEvents:: |
core/ |
Name of the event fired when saving to a migration's map. |
MigrateEvents:: |
core/ |
Name of the event fired when finishing a migration import operation. |
MigrateEvents:: |
core/ |
Name of the event fired when finishing a migration rollback operation. |
MigrateEvents:: |
core/ |
Name of the event fired just after a single item has been deleted. |
MigrateEvents:: |
core/ |
Name of the event fired just after a single item has been imported. |
MigrateEvents:: |
core/ |
Name of the event fired when beginning a migration import operation. |
MigrateEvents:: |
core/ |
Name of the event fired when beginning a migration rollback operation. |
MigrateEvents:: |
core/ |
Name of the event fired when about to delete a single item. |
MigrateEvents:: |
core/ |
Name of the event fired when about to import a single item. |
RenderEvents:: |
core/ |
Name of the event when selecting a page display variant to use. |
RoutingEvents:: |
core/ |
Name of the event fired during route collection to allow changes to routes. |
RoutingEvents:: |
core/ |
Name of the event fired during route collection to allow new routes. |
RoutingEvents:: |
core/ |
Name of the event fired to indicate route building has ended. |
UserEvents:: |
core/ |
The name of the event fired when a login is blocked by flood control. |
UserEvents:: |
core/ |
The name of the event fired when a login is blocked by flood control. |