function EntityType::getLinkTemplate

Same name and namespace in other branches
  1. 11.x core/lib/Drupal/Core/Entity/EntityType.php \Drupal\Core\Entity\EntityType::getLinkTemplate()
  2. 9 core/lib/Drupal/Core/Entity/EntityType.php \Drupal\Core\Entity\EntityType::getLinkTemplate()
  3. 8.9.x core/lib/Drupal/Core/Entity/EntityType.php \Drupal\Core\Entity\EntityType::getLinkTemplate()
  4. main core/lib/Drupal/Core/Entity/EntityType.php \Drupal\Core\Entity\EntityType::getLinkTemplate()

Gets the link template for a given key.

Parameters

string $key: The link type.

Return value

string|bool The path for this link, or FALSE if it doesn't exist.

Overrides EntityTypeInterface::getLinkTemplate

File

core/lib/Drupal/Core/Entity/EntityType.php, line 667

Class

EntityType
Provides an implementation of an entity type and its metadata.

Namespace

Drupal\Core\Entity

Code

public function getLinkTemplate($key) {
  $links = $this->getLinkTemplates();
  return $links[$key] ?? FALSE;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.