public EntityType::getLinkTemplate($key)
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 617
Class
- EntityType
- Provides an implementation of an entity type and its metadata.
Namespace
Drupal\Core\Entity
Code
1 2 3 4 | public function getLinkTemplate( $key ) { $links = $this ->getLinkTemplates(); return isset( $links [ $key ]) ? $links [ $key ] : FALSE; } |
Please login to continue.