class FormBaseAlterEvent in Hook Event Dispatcher 8
Class FormBaserAlterEvent.
Hierarchy
- class \Drupal\hook_event_dispatcher\Event\Form\BaseFormEvent extends \Symfony\Component\EventDispatcher\Event implements EventInterface
- class \Drupal\hook_event_dispatcher\Event\Form\FormBaseAlterEvent
Expanded class hierarchy of FormBaseAlterEvent
2 files declare their use of FormBaseAlterEvent
- ExampleFormEventSubscribers.php in src/
Example/ ExampleFormEventSubscribers.php - hook_event_dispatcher.module in ./
hook_event_dispatcher.module - Hook event dispatcher module.
File
- src/
Event/ Form/ FormBaseAlterEvent.php, line 10
Namespace
Drupal\hook_event_dispatcher\Event\FormView source
class FormBaseAlterEvent extends BaseFormEvent {
/**
* The base form id.
*
* @var string
*/
protected $baseFormId;
/**
* FormBaseAlterEvent constructor.
*
* @param array $form
* Nested array of form elements that comprise the form.
* @param \Drupal\Core\Form\FormStateInterface $formState
* The current state of the form. The arguments that
* \Drupal::formBuilder()->getForm() was originally called with are
* available in the array $form_state->getBuildInfo()['args'].
* @param string $formId
* String representing the name of the form itself. Typically this is the
* name of the function that generated the form.
* @param string $baseFormId
* The base form id.
*/
public function __construct(array &$form, FormStateInterface $formState, $formId, $baseFormId) {
parent::__construct($form, $formState, $formId);
$this->baseFormId = $baseFormId;
}
/**
* {@inheritdoc}
*/
public function getDispatcherType() {
return 'hook_event_dispatcher.form_base_' . $this
->getBaseFormId() . '.alter';
}
/**
* Get the base form id.
*
* @return string
* The base form id.
*/
public function getBaseFormId() {
return $this->baseFormId;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
BaseFormEvent:: |
protected | property | The form. | |
BaseFormEvent:: |
protected | property | The form id. | |
BaseFormEvent:: |
protected | property | The form state. | |
BaseFormEvent:: |
public | function | Get the form. | |
BaseFormEvent:: |
public | function | Get the form id. | |
BaseFormEvent:: |
public | function | Get the form state. | |
BaseFormEvent:: |
public | function | Set the form. | |
FormBaseAlterEvent:: |
protected | property | The base form id. | |
FormBaseAlterEvent:: |
public | function | Get the base form id. | |
FormBaseAlterEvent:: |
public | function |
Get the dispatcher type. Overrides EventInterface:: |
|
FormBaseAlterEvent:: |
public | function |
FormBaseAlterEvent constructor. Overrides BaseFormEvent:: |