class WidgetMultivalueFormAlterEvent in Hook Event Dispatcher 8.2
Same name and namespace in other branches
- 3.x modules/field_event_dispatcher/src/Event/Field/WidgetMultivalueFormAlterEvent.php \Drupal\field_event_dispatcher\Event\Field\WidgetMultivalueFormAlterEvent
Class WidgetMultivalueFormAlterEvent.
Hierarchy
- class \Drupal\field_event_dispatcher\Event\Field\WidgetMultivalueFormAlterEvent extends \Symfony\Component\EventDispatcher\Event implements EventInterface
Expanded class hierarchy of WidgetMultivalueFormAlterEvent
2 files declare their use of WidgetMultivalueFormAlterEvent
- field_event_dispatcher.module in modules/
field_event_dispatcher/ field_event_dispatcher.module - Field event dispatcher submodule.
- WidgetFormAlterEventTest.php in modules/
field_event_dispatcher/ tests/ src/ Unit/ Field/ WidgetFormAlterEventTest.php
File
- modules/
field_event_dispatcher/ src/ Event/ Field/ WidgetMultivalueFormAlterEvent.php, line 13
Namespace
Drupal\field_event_dispatcher\Event\FieldView source
class WidgetMultivalueFormAlterEvent extends Event implements EventInterface {
/**
* The field widget form elements.
*
* @var array
*/
private $elements;
/**
* The form state.
*
* @var \Drupal\Core\Form\FormStateInterface
*/
private $formState;
/**
* The context.
*
* @var array
*/
private $context;
/**
* WidgetMultivalueFormAlterEvent constructor.
*
* @param array $elements
* The field widget form elements as constructed by
* \Drupal\Core\Field\WidgetBase::formMultipleElements().
* @param \Drupal\Core\Form\FormStateInterface $formState
* The current state of the form.
* @param array $context
* An associative array containing the following key-value pairs:
* - form: The form structure to which widgets are being attached. This may
* be a full form structure, or a sub-element of a larger form.
* - widget: The widget plugin instance.
* - items: The field values, as a
* \Drupal\Core\Field\FieldItemListInterface object.
* - default: A boolean indicating whether the form is being shown as a
* dummy form to set default values.
*/
public function __construct(array &$elements, FormStateInterface $formState, array $context) {
$this->elements =& $elements;
$this->formState = $formState;
$this->context = $context;
}
/**
* Get the elements.
*
* @return array
* The elements.
*/
public function &getElements() {
return $this->elements;
}
/**
* Get the form state.
*
* @return \Drupal\Core\Form\FormStateInterface
* The form state.
*/
public function getFormState() {
return $this->formState;
}
/**
* Get the context.
*
* @return array
* The context.
*/
public function getContext() {
return $this->context;
}
/**
* {@inheritdoc}
*/
public function getDispatcherType() : string {
return HookEventDispatcherInterface::WIDGET_MULTIVALUE_FORM_ALTER;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
WidgetMultivalueFormAlterEvent:: |
private | property | The context. | |
WidgetMultivalueFormAlterEvent:: |
private | property | The field widget form elements. | |
WidgetMultivalueFormAlterEvent:: |
private | property | The form state. | |
WidgetMultivalueFormAlterEvent:: |
public | function | Get the context. | |
WidgetMultivalueFormAlterEvent:: |
public | function |
Get the dispatcher type. Overrides EventInterface:: |
|
WidgetMultivalueFormAlterEvent:: |
public | function | Get the elements. | |
WidgetMultivalueFormAlterEvent:: |
public | function | Get the form state. | |
WidgetMultivalueFormAlterEvent:: |
public | function | WidgetMultivalueFormAlterEvent constructor. |