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

Implements the magic __sleep() method.

Using the Serialize interface and serialize() / unserialize() methods breaks entity forms in PHP 5.4. @todo Investigate in https://www.drupal.org/node/1977206.

Overrides ConfigEntityBase::__sleep

File

core/lib/Drupal/Core/Field/FieldConfigBase.php, line 470

Class

FieldConfigBase
Base class for configurable field definitions.

Namespace

Drupal\Core\Field

Code

public function __sleep() {
  $properties = get_object_vars($this);

  // Only serialize necessary properties, excluding those that can be
  // recalculated.
  unset($properties['itemDefinition'], $properties['original']);
  return array_keys($properties);
}