function EntityFormDisplay::extractFormValues
Same name in other branches
- 8.9.x core/lib/Drupal/Core/Entity/Entity/EntityFormDisplay.php \Drupal\Core\Entity\Entity\EntityFormDisplay::extractFormValues()
- 10 core/lib/Drupal/Core/Entity/Entity/EntityFormDisplay.php \Drupal\Core\Entity\Entity\EntityFormDisplay::extractFormValues()
- 11.x core/lib/Drupal/Core/Entity/Entity/EntityFormDisplay.php \Drupal\Core\Entity\Entity\EntityFormDisplay::extractFormValues()
Overrides EntityFormDisplayInterface::extractFormValues
File
-
core/
lib/ Drupal/ Core/ Entity/ Entity/ EntityFormDisplay.php, line 233
Class
- EntityFormDisplay
- Configuration entity.
Namespace
Drupal\Core\Entity\EntityCode
public function extractFormValues(FieldableEntityInterface $entity, array &$form, FormStateInterface $form_state) {
$extracted = [];
foreach ($entity as $name => $items) {
if ($widget = $this->getRenderer($name)) {
$widget->extractFormValues($items, $form, $form_state);
$extracted[$name] = $name;
}
}
return $extracted;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.