EntityViewDisplay::buildMultiple enforces the langcode even when viewing the default translation

Created on 4 October 2023, over 1 year ago

Coming from 🐛 Inconsistent paragraph translations containing untranslated entity_reference fields Active .
A workaround suggested by berdir was to subclass the default entity reference formatter and override getEntitiesToView() to use the current language from language manager instead of $langcode.

But it looks like $langcode initially comes from EntityViewDisplay::buildMultiple which forces it to the current entity language as follows:

if ($entity instanceof TranslatableDataInterface && $entity->isTranslatable()) {
  $view_langcode = $entity->language()->getId();
}
else {
  $view_langcode = NULL;
}

Which later defines the langcode used on fields, including untranslated entity_reference fields, which can contain references to translated content. I would like to see what happens by adding && !$entity->isDefaultTranslation() to that condition.

💬 Support request
Status

Active

Version

10.1

Component
Entity 

Last updated 3 days ago

Created by

🇧🇪Belgium herved

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Production build 0.71.5 2024