function TranslationLanguageRenderer::preRender
Same name in other branches
- 9 core/modules/views/src/Entity/Render/TranslationLanguageRenderer.php \Drupal\views\Entity\Render\TranslationLanguageRenderer::preRender()
Overrides EntityTranslationRendererBase::preRender
File
-
core/
modules/ views/ src/ Entity/ Render/ TranslationLanguageRenderer.php, line 82
Class
- TranslationLanguageRenderer
- Renders entity translations in their row language.
Namespace
Drupal\views\Entity\RenderCode
public function preRender(array $result) {
$view_builder = \Drupal::entityTypeManager()->getViewBuilder($this->entityType
->id());
/** @var \Drupal\views\ResultRow $row */
foreach ($result as $row) {
$entity = $row->_entity;
$entity->view = $this->view;
$langcode = $this->getLangcode($row);
$this->build[$entity->id()][$langcode] = $view_builder->view($entity, $this->view->rowPlugin->options['view_mode'], $this->getLangcode($row));
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.