Programmatically place menu into Layout Builder via migration

Created on 20 May 2021, almost 4 years ago
Updated 13 February 2025, about 2 months ago

Problem/Motivation

I'm doing a D7 to D9 migration, and I'm programmatically placing a menu into Layout Builder using the "menu_block" contrib module. The data migrates just fine, but it won't display unless I go into the Layout Builder interface and click "Update" on that block. When I code it to use the core "system_menu_block" instead of this module's "menu_block," it displays fine without this manual extra step.

So, my question is: is this a bug, or is there an extra step I need to do when migrating to a menu_block instance in Layout Builder?

Steps to reproduce

In my custom migration process plugin, I have the following code snippet to place the previously migrated menu as a section component into Layout Builder:

$section = new Section();
$component = new SectionComponent($this->uuid->generate(), $paneconfig['region'], [
        "id" => "menu_block:main"
        "label" => "Main menu"
        "provider" => "menu_block"
        "label_display" => 0
        "follow" => 1
        "follow_parent" => "active"
        "level" => "1"
        "depth" => "0"
        "expand_all_items" => false
        "parent" => "main:"
        "suggestion" => "main"
        "label_type" => "block"
        "label_link" => 0
        "context_mapping" => []
]);
$section->appendComponent($component);
πŸ› Bug report
Status

Closed: won't fix

Version

1.0

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States paramnida

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

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • πŸ‡¨πŸ‡¦Canada joelpittet Vancouver

    Hmm, this seems more like a support request than a bug report. Not sure what exactly needs to be done here, but it’s probably way easier to manually configure on the new site rather than trying to migrate it.

Production build 0.71.5 2024