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