crocheteer-8.x-1.0/src/EventSubscriber/HookEntityLoadEventSubscriber.php
src/EventSubscriber/HookEntityLoadEventSubscriber.php
<?php
namespace Drupal\crocheteer\EventSubscriber;
use Drupal\hook_event_dispatcher\Event\Entity\EntityLoadEvent;
use Drupal\hook_event_dispatcher\HookEventDispatcherInterface;
/**
* Register Hooks handler for the Entity Load Event.
*
* @property-read \Drupal\crocheteer\Plugin\Hook\Entity\HookEntityLoadPluginManager $pluginManager
*/
class HookEntityLoadEventSubscriber extends HookEventSubscriber {
/**
* {@inheritdoc}
*/
public static function getSubscribedEvents() : array {
return [
HookEventDispatcherInterface::ENTITY_LOAD => 'onEntityLoad',
];
}
/**
* On Entity Load Event.
*
* @param \Drupal\hook_event_dispatcher\Event\Entity\EntityLoadEvent $event
* The Entity Load Event.
*/
public function onEntityLoad(EntityLoadEvent $event) : void {
$this->handleHooks($event);
}
}
