You are here

class ExampleFormEventSubscribers in Hook Event Dispatcher 8.2

Same name and namespace in other branches
  1. 3.x examples/ExampleFormEventSubscribers.php \Drupal\hook_event_dispatcher\ExampleFormEventSubscribers

Class ExampleFormEventSubscribers.

Don't forget to define your class as a service and tag it as an "event_subscriber":

services: hook_event_dispatcher.example_form_subscribers: class: Drupal\hook_event_dispatcher\ExampleFormEventSubscribers tags:

  • { name: event_subscriber }

Hierarchy

  • class \Drupal\hook_event_dispatcher\ExampleFormEventSubscribers implements \Symfony\Component\EventDispatcher\EventSubscriberInterface

Expanded class hierarchy of ExampleFormEventSubscribers

File

examples/ExampleFormEventSubscribers.php, line 22

Namespace

Drupal\hook_event_dispatcher
View source
class ExampleFormEventSubscribers implements EventSubscriberInterface {

  /**
   * Alter form.
   *
   * @param \Drupal\core_event_dispatcher\Event\Form\FormAlterEvent $event
   *   The event.
   */
  public function alterForm(FormAlterEvent $event) : void {
    $form =& $event
      ->getForm();
    $form['extra_markup'] = [
      '#markup' => 'This is really cool markup',
    ];
  }

  /**
   * Alter search form.
   *
   * @param \Drupal\core_event_dispatcher\Event\Form\FormIdAlterEvent $event
   *   The event.
   */
  public function alterSearchForm(FormIdAlterEvent $event) : void {
    $form =& $event
      ->getForm();

    // Add placeholder.
    $form['keys']['#attributes']['placeholder'] = 'Search some things';
  }

  /**
   * Alter node form.
   *
   * @param \Drupal\core_event_dispatcher\Event\Form\FormBaseAlterEvent $event
   *   The event.
   */
  public function alterNodeForm(FormBaseAlterEvent $event) : void {
    $form =& $event
      ->getForm();
    $form['title']['widget'][0]['value']['#title'] = 'A new title!';
  }

  /**
   * {@inheritdoc}
   */
  public static function getSubscribedEvents() : array {
    return [
      HookEventDispatcherInterface::FORM_ALTER => 'alterForm',
      // React on "search_block_form" form.
      'hook_event_dispatcher.form_search_block_form.alter' => 'alterSearchForm',
      // React on al forms with base id "node_form".
      'hook_event_dispatcher.form_base_node_form.alter' => 'alterNodeForm',
    ];
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ExampleFormEventSubscribers::alterForm public function Alter form.
ExampleFormEventSubscribers::alterNodeForm public function Alter node form.
ExampleFormEventSubscribers::alterSearchForm public function Alter search form.
ExampleFormEventSubscribers::getSubscribedEvents public static function Returns an array of event names this subscriber wants to listen to.