function ContentEntityBase::__sleep

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Entity/ContentEntityBase.php \Drupal\Core\Entity\ContentEntityBase::__sleep()
  2. 8.9.x core/lib/Drupal/Core/Entity/ContentEntityBase.php \Drupal\Core\Entity\ContentEntityBase::__sleep()
  3. 11.x core/lib/Drupal/Core/Entity/ContentEntityBase.php \Drupal\Core\Entity\ContentEntityBase::__sleep()

Overrides EntityBase::__sleep

File

core/lib/Drupal/Core/Entity/ContentEntityBase.php, line 549

Class

ContentEntityBase
Implements Entity Field API specific enhancements to the Entity class.

Namespace

Drupal\Core\Entity

Code

public function __sleep() {
  // Get the values of instantiated field objects, only serialize the values.
  foreach ($this->fields as $name => $fields) {
    foreach ($fields as $langcode => $field) {
      $this->values[$name][$langcode] = $field->getValue();
    }
  }
  $this->fields = [];
  $this->fieldDefinitions = NULL;
  $this->languages = NULL;
  $this->clearTranslationCache();
  return parent::__sleep();
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.