function 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) {
return FALSE;
} catch (MissingMandatoryParametersException) {
return FALSE;
}
return TRUE;
});
}