Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. FieldUpdateActionBase.php

function 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\Field

Code

public function execute($entity = NULL) {
    foreach ($this->getFieldsToUpdate() as $field => $value) {
        $entity->{$field} = $value;
    }
    $entity->save();
}
RSS feed
Powered by Drupal