- 🇫🇷France andypost
This assert exactly in-place to catch this case, probably it needs some kinda "broken" plugin fallback to properly solve it
When a layout has a block and that block plugin didn't exist anymore (for example because the module has been uninstalled, the view removed or the custom code deleted), when trying to access to the layout builder with a non-admin user, there would be a fatal error:
AssertionError: assert(isset($build['layout-builder__section'][$region][$uuid]['content'])) in assert() (line 64 of modules/contrib/lb_ux/src/Element/LayoutBuilderUX.php).
assert(, 'assert(isset($build['layout-builder__section'][$region][$uuid]['content']))') (Line: 64)
Drupal\lb_ux\Element\LayoutBuilderUX->buildAdministrativeSection(Object, 1) (Line: 124)
Drupal\layout_builder\Element\LayoutBuilder->layout(Object) (Line: 139)
Drupal\lb_ux\Element\LayoutBuilderUX->layout(Object) (Line: 98)
Drupal\layout_builder\Element\LayoutBuilder->preRender(Array)
- Create a view block
- Place that view on a layout
- Remove that view
- Try to access to the layout builder with a not administrator error.
Replace the assert() call with an if statement
-
- Review
- Test
None
None
None
Needs work
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
This assert exactly in-place to catch this case, probably it needs some kinda "broken" plugin fallback to properly solve it