Skip to content
Snippets Groups Projects

Issue #3485435: Make Layout Builder Create Inline blocks logic optional

Closed Issue #3485435: Make Layout Builder Create Inline blocks logic optional
1 unresolved thread
Closed Pablo López requested to merge issue/drupal-3485435:3485435-layout-builder-create into 11.x
1 unresolved thread

Closes #3485435

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
60 60 */
61 61 public $handles_permission_check = FALSE;
62 62
63 /**
64 * Indicates that this section storage allows inline block creation.
65 *
66 * If FALSE, the 'Create content block' link will be shown as part of the
67 * choose block off-canvas dialog. If TRUE, the link will be hidden and will
68 * not be possible to add new inline blocks from the Layout Builder UI.
69 * Defaults to FALSE.
70 *
71 * @var bool
72 *
73 * @see \Drupal\layout_builder\Controller\ChooseBlockController
74 */
75 public $disable_inline_blocks = FALSE;
  • Maintainer

    Could this be $allow_inline_blocks = TRUE to avoid the double negative?

  • Pablo López changed this line in version 2 of the diff

    changed this line in version 2 of the diff

  • That was exactly the initial name I used for this property :slight_smile:

    However, while testing, I had some issues with the upgrade path for LB collections in the tempstore where the new property was not defined yet. That's why I moved into a property whose value is FALSE by default.

    To overcome this, added in this MR sentences like $section_storage->getPluginDefinition()->get('allow_inline_blocks') ?? TRUE to check the value.

    My preferred approach would have been to clear all the items from the LayoutTempStoreRepository to reload the values with the default set as TRUE. Made some tests, but I have not been able to find the way to flush all the layout_builder.section_storage.* collections from SharedTempStoreFactory.

    Is the current approach fine? Or do you have a better suggestion?

  • Please register or sign in to reply
  • Pablo López added 5 commits

    added 5 commits

    • 3c1d6ffa...1afb8711 - 2 commits from branch project:11.x
    • 3c5625c5 - Merge remote-tracking branch 'origin/11.x' into 3485435-layout-builder-create
    • 72ebf792 - Rename SectionStorage property to avoid double negative
    • 455dab1c - Adapt code to work with missing properties

    Compare with previous version

  • Pablo López added 1 commit

    added 1 commit

    • 9c6e57ea - Adapt code to work with missing properties

    Compare with previous version

  • danielveza
  • danielveza
  • danielveza
  • danielveza
  • Pablo López added 1 commit

    added 1 commit

    Compare with previous version

  • m4olivei
  • danielveza
  • Pablo López added 1 commit

    added 1 commit

    • 7b8b597f - Apply 1 suggestion(s) to 1 file(s)

    Compare with previous version

  • Pablo López added 404 commits

    added 404 commits

    • 7b8b597f...ba9b75f6 - 403 commits from branch project:11.x
    • 96ac66fb - Merge remote-tracking branch 'origin/11.x' into 3485435-layout-builder-create

    Compare with previous version

  • Pablo López added 81 commits

    added 81 commits

    • 96ac66fb...7488aea7 - 80 commits from branch project:11.x
    • 6b9611c8 - Merge remote-tracking branch 'origin/11.x' into 3485435-layout-builder-create

    Compare with previous version

  • Pablo López added 1 commit

    added 1 commit

    Compare with previous version

  • Pablo López added 1 commit

    added 1 commit

    Compare with previous version

  • Pablo López added 1 commit

    added 1 commit

    Compare with previous version

  • Pablo López added 154 commits

    added 154 commits

    • 5d439605...401a157f - 153 commits from branch project:11.x
    • e54cdbd8 - Merge remote-tracking branch 'origin/11.x' into 3485435-layout-builder-create

    Compare with previous version

  • Pablo López added 43 commits

    added 43 commits

    • e54cdbd8...27788820 - 42 commits from branch project:11.x
    • 5f5ac3fd - Merge remote-tracking branch 'origin/11.x' into 3485435-layout-builder-create

    Compare with previous version

  • closed

  • Please register or sign in to reply
    Loading