- Issue created by @StryKaizer
- Merge request !403534913 Add recipes configaction to append blocks to allowed/restricted blocks → (Open) created by StryKaizer
- 🇧🇪Belgium StryKaizer Belgium
MR pushed
Documentation on how to use these configactions in recipes:
config: actions: core.entity_view_display.node.*.full: # Basic example on how to restrict blocks. entityViewModeRestrictionAppendRestrictedBlocks: blocks: 'Inline blocks': - 'inline_block:text' # Basic example on how to allow blocks. entityViewModeRestrictionAppendAllowedBlocks: blocks: 'Inline blocks': - 'inline_block:image' # Example on how to allow by region. entityViewModeRestrictionByRegionAppendAllowedBlocks: - layouts: - one_column - two_column regions: - footer - header blocks: 'Inline blocks': - 'inline_block:text' # Example on how to restrict by region. entityViewModeRestrictionByRegionAppendRestrictedBlocks: - layouts: - three_column regions: - footer - header blocks: 'Inline blocks': - 'inline_block:text'