Long-standing architecture flaw: Directly printing a nested element skips important processing (including #access) of parent elements

Created on 3 April 2015, about 10 years ago
Updated 22 March 2025, 15 days ago

Problem/Motivation

If a Twig template receives a variable x, but doesn't print it and instead only prints a child element, such as {{ x.y }}, then several potential problems happen:

  1. If the x element has '#access' => FALSE, then the x.y element still gets printed, because the renderer never receives the x element directly in order to check its access.
  2. If the x element has #theme, #theme_wrappers, etc. that add something important to the rendered HTML, such as attributes for in-place editing, RDFa, etc., those get skipped, and so the output {{ x.y }} isn't in-place editable, RDFa annotated, etc.
  3. If the x element has cache metadata (contexts, tags, or max-age) or #attached libraries, they don't bubble up, because x is not itself rendered.

Proposed resolution

Corresponding to each of the above 3 problems:

  1. Fix the Twig processing of {{ x.y }} to check the #access of x.
  2. Perhaps the skipping of the parent element theming is not a problem, but a feature. After all, that's what {{ x.y }} means: print that as its own thing, not as a child of x. However, maybe we should add some other syntax, such as {{ x|only('y') }} for printing a single child, but with the full context of its parent?
  3. Discuss. Should #cache and #attached of the parent always apply to the child, even when the child is printed out of its parent's context (the way that #access should)? Or is it a desired feature that it doesn't? However, at a minimum, if #cache was partially influenced by #access, then it needs to apply wherever #access does (see #2099137-71: Entity/field access and node grants not taken into account with core cache contexts β†’ for ideas on being able to track that).

Remaining tasks

Discuss what is desired in general, and what the scope of this issue should be.

User interface changes

None

API changes

TBD

πŸ› Bug report
Status

Active

Version

11.0 πŸ”₯

Component

theme system

Created by

πŸ‡ΊπŸ‡ΈUnited States effulgentsia

Live updates comments and jobs are added and updated live.
  • Security improvements

    It makes Drupal less vulnerable to abuse or misuse. Note, this is the preferred tag, though the Security tag has a large body of issues tagged to it. Do NOT publicly disclose security vulnerabilities; contact the security team instead. Anyone (whether security team or not) can apply this tag to security improvements that do not directly present a vulnerability e.g. hardening an API to add filtering to reduce a common mistake in contributed modules.

  • Triaged core major

    There is consensus among core maintainers that this is a major issue. Only core committers should add this tag.

Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

Production build 0.71.5 2024