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