function ContactLink::getUrlInfo
Same name in other branches
- 9 core/modules/contact/src/Plugin/views/field/ContactLink.php \Drupal\contact\Plugin\views\field\ContactLink::getUrlInfo()
- 10 core/modules/contact/src/Plugin/views/field/ContactLink.php \Drupal\contact\Plugin\views\field\ContactLink::getUrlInfo()
- 11.x core/modules/contact/src/Plugin/views/field/ContactLink.php \Drupal\contact\Plugin\views\field\ContactLink::getUrlInfo()
Overrides LinkBase::getUrlInfo
1 call to ContactLink::getUrlInfo()
- ContactLink::renderLink in core/
modules/ contact/ src/ Plugin/ views/ field/ ContactLink.php - Prepares the link to view a entity.
File
-
core/
modules/ contact/ src/ Plugin/ views/ field/ ContactLink.php, line 32
Class
- ContactLink
- Defines a field that links to the user contact page, if access is permitted.
Namespace
Drupal\contact\Plugin\views\fieldCode
protected function getUrlInfo(ResultRow $row) {
return Url::fromRoute('entity.user.contact_form', [
'user' => $this->getEntity($row)
->id(),
]);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.