Skip to content
Snippets Groups Projects
Commit d1bbfa74 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2205367 by sun, Berdir: [HEAD BROKEN] PHP 5.4.

parent f6e6e528
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,7 @@
* }
* )
*/
class EntityFormDisplay extends EntityDisplayBase implements EntityFormDisplayInterface, \Serializable {
class EntityFormDisplay extends EntityDisplayBase implements EntityFormDisplayInterface {
/**
* {@inheritdoc}
......@@ -148,20 +148,20 @@ public function getRenderer($field_name) {
/**
* {@inheritdoc}
*/
public function serialize() {
public function __sleep() {
// Only store the definition, not external objects or derived data.
$data = $this->getExportProperties() + array('entityType' => $this->getEntityTypeId());
return serialize($data);
$keys = array_keys($this->getExportProperties());
$keys[] = 'entityTypeId';
return $keys;
}
/**
* {@inheritdoc}
*/
public function unserialize($serialized) {
$data = unserialize($serialized);
$entity_type = $data['entityType'];
unset($data['entityType']);
$this->__construct($data, $entity_type);
public function __wakeup() {
// Run the values from getExportProperties() through __construct().
$values = array_intersect_key($this->getExportProperties(), get_object_vars($this));
$this->__construct($values, $this->entityTypeId);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment