W3cubDocs

/Drupal 8

public function EntityFormDisplayInterface::extractFormValues

public EntityFormDisplayInterface::extractFormValues(FieldableEntityInterface $entity, array &$form, FormStateInterface $form_state)

Extracts field values from the submitted widget values into the entity.

This accounts for drag-and-drop reordering of field values, and filtering of empty values.

Parameters

\Drupal\Core\Entity\FieldableEntityInterface $entity: The entity.

array $form: The form structure where field elements are attached to. This might be a full form structure, or a sub-element of a larger form.

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

Return value

array An array whose keys and values are the keys of the top-level entries in $form_state->getValues() that have been processed. The remaining entries, if any, do not correspond to widgets and should be extracted manually by the caller if needed.

File

core/lib/Drupal/Core/Entity/Display/EntityFormDisplayInterface.php, line 119

Class

EntityFormDisplayInterface
Provides a common interface for entity form displays.

Namespace

Drupal\Core\Entity\Display

Code

public function extractFormValues(FieldableEntityInterface $entity, array &$form, FormStateInterface $form_state);

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Entity!Display!EntityFormDisplayInterface.php/function/EntityFormDisplayInterface::extractFormValues/8.1.x