You are here

public function LinkManager::getTypeUri in Drupal 9

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

Gets the URI that corresponds to a bundle.

When using hypermedia formats, this URI can be used to indicate which bundle the data represents. Documentation about required and optional fields can also be provided at this URI.

Parameters

$entity_type: The bundle's entity type.

$bundle: The bundle name.

array $context: (optional) Optional serializer/normalizer context.

Return value

string The corresponding URI for the bundle.

Overrides TypeLinkManagerInterface::getTypeUri

File

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

Class

LinkManager

Namespace

Drupal\hal\LinkManager

Code

public function getTypeUri($entity_type, $bundle, $context = []) {
  return $this->typeLinkManager
    ->getTypeUri($entity_type, $bundle, $context);
}