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