You are here

public static function Webform::postLoad in Webform 8.5

Same name and namespace in other branches
  1. 6.x src/Entity/Webform.php \Drupal\webform\Entity\Webform::postLoad()

Acts on loaded entities.

Parameters

\Drupal\Core\Entity\EntityStorageInterface $storage: The entity storage object.

\Drupal\Core\Entity\EntityInterface[] $entities: An array of entities.

Overrides EntityBase::postLoad

File

src/Entity/Webform.php, line 2191

Class

Webform
Defines the webform entity.

Namespace

Drupal\webform\Entity

Code

public static function postLoad(EntityStorageInterface $storage, array &$entities) {
  foreach ($entities as $entity) {
    $entity->elementsOriginal = $entity->elements;
    $entity->settingsOriginal = $entity->settings;
  }
}