You are here

FormIdAlterEvent.php in Hook Event Dispatcher 8

File

src/Event/Form/FormIdAlterEvent.php
View source
<?php

namespace Drupal\hook_event_dispatcher\Event\Form;


/**
 * Class FormIdAlterEvent.
 */
class FormIdAlterEvent extends BaseFormEvent {

  /**
   * {@inheritdoc}
   */
  public function getDispatcherType() {
    return 'hook_event_dispatcher.form_' . $this
      ->getFormId() . '.alter';
  }

}

Classes

Namesort descending Description
FormIdAlterEvent Class FormIdAlterEvent.