Same name and namespace in other branches
  1. 10 core/lib/Drupal/Core/Field/WidgetBase.php \Drupal\Core\Field\WidgetBase::setWidgetState()
  2. 9 core/lib/Drupal/Core/Field/WidgetBase.php \Drupal\Core\Field\WidgetBase::setWidgetState()

Stores processing information about the widget in $form_state.

This method is static so that it can be used in static Form API #callbacks.

Parameters

array $parents: The array of #parents where the widget lives in the form.

string $field_name: The field name.

\Drupal\Core\Form\FormStateInterface $form_state: The form state.

array $field_state: The array of data to store. See getWidgetState() for the structure and content of the array.

Overrides WidgetBaseInterface::setWidgetState

7 calls to WidgetBase::setWidgetState()
FileWidget::extractFormValues in core/modules/file/src/Plugin/Field/FieldWidget/FileWidget.php
Extracts field values from submitted form values.
FileWidget::submit in core/modules/file/src/Plugin/Field/FieldWidget/FileWidget.php
Form submission handler for upload/remove button of formElement().
MediaLibraryWidget::setFieldState in core/modules/media_library/src/Plugin/Field/FieldWidget/MediaLibraryWidget.php
Sets the field state for the widget.
WidgetBase::addMoreSubmit in core/lib/Drupal/Core/Field/WidgetBase.php
Submission handler for the "Add another item" button.
WidgetBase::afterBuild in core/lib/Drupal/Core/Field/WidgetBase.php
After-build handler for field elements in a form.

... See full list

File

core/lib/Drupal/Core/Field/WidgetBase.php, line 491

Class

WidgetBase
Base class for 'Field widget' plugin implementations.

Namespace

Drupal\Core\Field

Code

public static function setWidgetState(array $parents, $field_name, FormStateInterface $form_state, array $field_state) {
  NestedArray::setValue($form_state
    ->getStorage(), static::getWidgetStateParents($parents, $field_name), $field_state);
}