function FieldUpdateActionBase::execute
Same name in other branches
- 9 core/lib/Drupal/Core/Field/FieldUpdateActionBase.php \Drupal\Core\Field\FieldUpdateActionBase::execute()
- 8.9.x core/lib/Drupal/Core/Field/FieldUpdateActionBase.php \Drupal\Core\Field\FieldUpdateActionBase::execute()
- 10 core/lib/Drupal/Core/Field/FieldUpdateActionBase.php \Drupal\Core\Field\FieldUpdateActionBase::execute()
Overrides ExecutableInterface::execute
File
-
core/
lib/ Drupal/ Core/ Field/ FieldUpdateActionBase.php, line 41
Class
- FieldUpdateActionBase
- Provides a base for action plugins that update one or more fields.
Namespace
Drupal\Core\FieldCode
public function execute($entity = NULL) {
foreach ($this->getFieldsToUpdate() as $field => $value) {
$entity->{$field} = $value;
}
$entity->save();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.