- Issue created by @firewaller
- πΊπΈUnited States firewaller
Specifically, commenting out the code here so `$patternkit_blocks` is always an empty array: https://git.drupalcode.org/project/patternkit/-/blob/9.1.x/src/Plugin/De...
- First commit to issue fork.
- πΊπΈUnited States slucero Arkansas
I've pushed up some work that adds a new configuration option to disable loading these derivatives and further disables the implementation of reusable blocks altogether. To help move toward disabling support for these altogether, the option is currently getting set to FALSE by default and outputs a warning during the update hook if there are any reusable blocks present in the system.
Remaining work includes:
- Determine a migration path and implementation plan for sites currently using reusable blocks
- Add automated test coverage for each option
- General functional testing to make sure everything continues to work as intended
- πΊπΈUnited States slucero Arkansas
slucero β changed the visibility of the branch 3511525-disable-reusable-blocks to hidden.
- πΊπΈUnited States slucero Arkansas
I've uploaded a new branch,
3511525-disable-reusable-blocks--parameter
, that supersedes the previous one with an alternative direction of implementing the config for enabling reusable blocks as a service parameter instead of config value. I've redirected to this direction instead for the following reasons:- A service parameter obscures the functionality more effectively than a new setting in the configuration form requiring continued usage of the functionality to be very intentional.
- Using a service parameter that's not heavily exposed also makes the process easier for phasing out the functionality altogether in a future release.
This new service parameter and related checks throughout the codebase default to disabling reusable blocks unless a site explicitly opts into enabling them through the use of the service parameter. This will make it easier to move toward removal altogether as part of π Remove Reusable Block Support Active .
Included in this branch are the following changes:
Assuming the new
enable_reusable_blocks
service parameter is not set or is explicitly set to FALSE,- Reusable block derivatives will not load in order do address the originally reported performance issue
- The following routes and related pages are no longer accessible or shown in menus:
/admin/structure/block/patternkit
/patternkit_block/{patternkit_block}
/patternkit_block/{patternkit_block}/edit
/patternkit_block/{patternkit_block}/delete
/patternkit_block/add
/patternkit_block/add/{pattern_id}
- Existing reusable blocks originally created through the layout builder interface and placed in layouts should continue to render as expected
- Existing reusable blocks originally created through the Block Structure > Patternkit Library interface and placed in layouts will not render
- A status warning has been added to the requirements page if reusable blocks existing within the database
If the new service parameter is enabled, existing functionality should be maintained, but the status warning added to the requirements page will still be reported.
The new service parameter by be enabled on a site by adding the following to the site's
services.yml
file, typically found insites/default/services.yml
:parameters: patternkit.config: enable_reusable_blocks: true
- Merge request !152#3511525: Disable and deprecate reusable block support β (Open) created by slucero