function EntityResolverInterface::resolve
Same name in other branches
- 9 core/modules/serialization/src/EntityResolver/EntityResolverInterface.php \Drupal\serialization\EntityResolver\EntityResolverInterface::resolve()
- 8.9.x core/modules/serialization/src/EntityResolver/EntityResolverInterface.php \Drupal\serialization\EntityResolver\EntityResolverInterface::resolve()
- 11.x core/modules/serialization/src/EntityResolver/EntityResolverInterface.php \Drupal\serialization\EntityResolver\EntityResolverInterface::resolve()
Returns the local ID of an entity referenced by serialized data.
Drupal entities are loaded by and internally referenced by a local ID. Because different websites can use the same local ID to refer to different entities (e.g., node "1" can be a different node on foo.com and bar.com, or on example.com and staging.example.com), it is generally unsuitable for use in hypermedia data exchanges. Instead, UUIDs, URIs, or other globally unique IDs are preferred.
This function takes a $data array representing partially deserialized data for an entity reference, and resolves it to a local entity ID. For example, depending on the data specification being used, $data might contain a 'uuid' key, a 'uri' key, a 'href' key, or some other data identifying the entity, and it is up to the implementor of this interface to resolve that appropriately for the specification being used.
Parameters
\Symfony\Component\Serializer\Normalizer\NormalizerInterface $normalizer: The Normalizer which is handling the data.
array $data: The data passed into the calling Normalizer.
string $entity_type: The type of entity being resolved; e.g., 'node' or 'user'.
Return value
string|null Returns the local entity ID, if found. Otherwise, returns NULL.
2 methods override EntityResolverInterface::resolve()
- TargetIdResolver::resolve in core/
modules/ serialization/ src/ EntityResolver/ TargetIdResolver.php - Returns the local ID of an entity referenced by serialized data.
- UuidResolver::resolve in core/
modules/ serialization/ src/ EntityResolver/ UuidResolver.php - Returns the local ID of an entity referenced by serialized data.
File
-
core/
modules/ serialization/ src/ EntityResolver/ EntityResolverInterface.php, line 36
Class
Namespace
Drupal\serialization\EntityResolverCode
public function resolve(NormalizerInterface $normalizer, $data, $entity_type);
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.