protected function LinkBase::addLangcode in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/views/src/Plugin/views/field/LinkBase.php \Drupal\views\Plugin\views\field\LinkBase::addLangcode()
Adds language information to the options.
Parameters
\Drupal\views\ResultRow $row: A view result row.
1 call to LinkBase::addLangcode()
- LinkBase::renderLink in core/
modules/ views/ src/ Plugin/ views/ field/ LinkBase.php - Prepares the link to view a entity.
File
- core/
modules/ views/ src/ Plugin/ views/ field/ LinkBase.php, line 184 - Contains \Drupal\views\Plugin\views\field\LinkBase.
Class
- LinkBase
- Field handler to present a link to an entity.
Namespace
Drupal\views\Plugin\views\fieldCode
protected function addLangcode(ResultRow $row) {
$entity = $this
->getEntity($row);
$langcode_key = $entity ? $entity
->getEntityType()
->getKey('langcode') : FALSE;
if ($langcode_key && isset($this->aliases[$langcode_key])) {
$this->options['alter']['language'] = $entity
->language();
}
}