You are here

public function RelationLinkManager::getRelationInternalIds in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/hal/src/LinkManager/RelationLinkManager.php \Drupal\hal\LinkManager\RelationLinkManager::getRelationInternalIds()

Translates a REST URI into internal IDs.

Parameters

string $relation_uri: Relation URI (or IANA link relation type) to transform into internal IDs.

Return value

array Array with keys 'entity_type_id', 'bundle' and 'field_name'. For backwards compatibility, the entity_type key returns the full entity type object, this will be removed before Drupal 9.0.

Overrides RelationLinkManagerInterface::getRelationInternalIds

File

core/modules/hal/src/LinkManager/RelationLinkManager.php, line 117

Class

RelationLinkManager

Namespace

Drupal\hal\LinkManager

Code

public function getRelationInternalIds($relation_uri, $context = []) {
  $relations = $this
    ->getRelations($context);
  if (isset($relations[$relation_uri])) {
    return $relations[$relation_uri];
  }
  return FALSE;
}