function EntityBase::uriRelationships
Same name in other branches
- 9 core/lib/Drupal/Core/Entity/EntityBase.php \Drupal\Core\Entity\EntityBase::uriRelationships()
- 8.9.x core/lib/Drupal/Core/Entity/EntityBase.php \Drupal\Core\Entity\EntityBase::uriRelationships()
- 11.x core/lib/Drupal/Core/Entity/EntityBase.php \Drupal\Core\Entity\EntityBase::uriRelationships()
Overrides EntityInterface::uriRelationships
File
-
core/
lib/ Drupal/ Core/ Entity/ EntityBase.php, line 299
Class
- EntityBase
- Defines a base entity class.
Namespace
Drupal\Core\EntityCode
public function uriRelationships() {
return array_filter(array_keys($this->linkTemplates()), function ($link_relation_type) {
// It's not guaranteed that every link relation type also has a
// corresponding route. For some, additional modules or configuration may
// be necessary. The interface demands that we only return supported URI
// relationships.
try {
$this->toUrl($link_relation_type)
->toString(TRUE)
->getGeneratedUrl();
} catch (RouteNotFoundException $e) {
return FALSE;
} catch (MissingMandatoryParametersException $e) {
return FALSE;
}
return TRUE;
});
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.