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

Issue #2229181 by pwolanin, Berdir, fago: MapItem::propertyDefinitions()...

Issue #2229181 by pwolanin, Berdir, fago: MapItem::propertyDefinitions() claims it has a static value property, which is wrong.
parent 902098c7
No related branches found
No related tags found
No related merge requests found
......@@ -27,10 +27,8 @@ class MapItem extends FieldItemBase {
* {@inheritdoc}
*/
public static function propertyDefinitions(FieldStorageDefinitionInterface $field_definition) {
$properties['value'] = DataDefinition::create('string')
->setLabel(t('Serialized values'));
return $properties;
// The properties are dynamic and can not be defined statically.
return array();
}
/**
......@@ -48,6 +46,15 @@ public static function schema(FieldStorageDefinitionInterface $field_definition)
);
}
/**
* {@inheritdoc}
*/
public function toArray() {
// The default implementation of toArray() only returns known properties.
// For a map, return everything as the properties are not pre-defined.
return $this->getValue();
}
/**
* {@inheritdoc}
*/
......
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