public function LinkManager::getRelationUri in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/rest/src/LinkManager/LinkManager.php \Drupal\rest\LinkManager\LinkManager::getRelationUri()
Gets the URI that corresponds to a field.
When using hypermedia formats, this URI can be used to indicate which field the data represents. Documentation about this field can also be provided at this URI.
Parameters
string $entity_type: The bundle's entity type.
string $bundle: The bundle name.
string $field_name: The field name.
array $context: (optional) Optional serializer/normalizer context.
Return value
string The corresponding URI for the field.
Overrides RelationLinkManagerInterface::getRelationUri
File
- core/
modules/ rest/ src/ LinkManager/ LinkManager.php, line 55 - Contains \Drupal\rest\LinkManager\LinkManager.
Class
Namespace
Drupal\rest\LinkManagerCode
public function getRelationUri($entity_type, $bundle, $field_name, $context = array()) {
return $this->relationLinkManager
->getRelationUri($entity_type, $bundle, $field_name, $context);
}