drupal_menu() doesn't have the correct cache context to work in multilingual sites

Created on 28 February 2025, about 1 month ago

Problem/Motivation

The drupal_menu() doesn't apply the correct context cache to work in multilingual sites.

The Main menu content is cached on the first language a user loads it in and is never invalidated when the language context changes. This is because drupal_menu function renders the menu as a render array rather than as a traditional Drupal block, when doing so it doesn't add the correct cache contexts to the build's contexts.

Steps to reproduce

In Drupal 10.x

  1. Enable the Multilingual modules
  2. Go to admin/config/regional/language and add a new language ex. Spanish
  3. Go to admin/structure/types/manage/page and enable translation for Basic Page content type
  4. Go to admin/config/regional/content-language and enable translations for Custom menu link
  5. Edit the page.html.twig file and add {{ drupal_menu('main') }}
  6. Create a new node and translate the node to Spanish
  7. Edit the Main menu and translate the links to Spanish
  8. Go to admin/config/regional/language/detection and enable Content language detection and select URL
  9. Go to the original node, see the content it's in English, and the Main menu is in English
  10. Go to the translated page, see the content is in Spanish, but the Main menu is still in English

Further testing:
Clear cache, and go to see the Spanish page first and then the English page, the Main menu content remains in Spanish

Proposed resolution

Add the languages:language_content tag to the cache context array.

Remaining tasks

User interface changes

API changes

Data model changes

🐛 Bug report
Status

Active

Version

3.4

Component

Code

Created by

🇦🇷Argentina camvertiz

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

Comments & Activities

Production build 0.71.5 2024