Error enabling layout_builder

Created on 6 February 2025, about 2 months ago

Problem/Motivation

Enabling layout_builder module when custom_elements is already enabled, results in:

  • Fatal error:
    In EntityTypeRepository.php line 111:
                                                                                                                    
      The Drupal\layout_builder\Entity\LayoutBuilderEntityViewDisplay class does not correspond to an entity type.  
  • layout_builder_install() not being executed, therefore some Field Layout sections not being properly initialized.

Cause

An effect of our hook_entity_info_alter implementation is: no LayoutBuilderEntityViewDisplay::load() calls can ever work.

I guess we treat that as a given. (If any module ever does this, things will just fail fatally. I re-checked Core and no such call is used outside of tests, so we are fine... except...)

layout_builder_install() does a LayoutBuilderEntityViewDisplay::loadMultiple().

Proposed resolution

Skip the entity_info_alter action until layout_builder_install() has executed.

🐛 Bug report
Status

Active

Version

3.0

Component

Code

Created by

🇳🇱Netherlands roderik Amsterdam,NL / Budapest,HU

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

Merge Requests

Comments & Activities

  • Issue created by @roderik
  • 🇳🇱Netherlands roderik Amsterdam,NL / Budapest,HU
  • 🇳🇱Netherlands roderik Amsterdam,NL / Budapest,HU

    This needs a review, because the code is 'ugly': I don't see a way to know that "layout_builder is being installed" without hardcoded assumptions. (And that's why the comments are big.)

    I think we have no other options / it's fine.

    • It errs on the "safe" side, being: only skip when it encounters the exact Layout Builder classname (while Layout Builder is not actually installed).
    • This does mean: if the class is somehow renamed, the fatal error returns.

    I checked the entity_type_alter behavior manually with xdebug enabled, and it does the expected thing:

    • only skips while layout_builder is being installed
    • works normally,
      • at other moments during the 'drush en layout_builder' command
      • in normal operations
      • during install/uninstall of other modules, either with or without layout_builder enabled.

    I only tested with drush. Since the only 'interaction' is with the ModuleInstaller service, drush vs UI install can't make a difference.

  • 🇳🇱Netherlands roderik Amsterdam,NL / Budapest,HU
  • Pipeline finished with Skipped
    about 2 months ago
    #417507
  • First commit to issue fork.
  • 🇦🇹Austria fago Vienna

    tested it with lupus decoupled - this solves the problem! Code looks great also, thus merged!

  • Automatically closed - issue fixed for 2 weeks with no activity.

Production build 0.71.5 2024