You are here

public function LinkManager::getRelationInternalIds in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/hal/src/LinkManager/LinkManager.php \Drupal\hal\LinkManager\LinkManager::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'.

Overrides RelationLinkManagerInterface::getRelationInternalIds

File

core/modules/hal/src/LinkManager/LinkManager.php, line 58

Class

LinkManager

Namespace

Drupal\hal\LinkManager

Code

public function getRelationInternalIds($relation_uri) {
  return $this->relationLinkManager
    ->getRelationInternalIds($relation_uri);
}