Edit in GitHubLog an issue

menu

The menu extension point creates a new menu that redirects to the App Builder app.

Example customization

The following example creates the Apps > First App on App Builder menu option.

Copied to your clipboard
menu: {
getItems() {
return [
{
id: `${extensionId}::first`,
title: 'First App on App Builder',
parent: `${extensionId}::apps`,
sortOrder: 1
},
{
id: `${extensionId}::apps`,
title: 'Apps',
isSection: true
}
]
}
}

Parameters

FieldTypeRequiredDescription
id
string
Yes
A unique ID to identify the application menu in Adobe Commerce Admin.
isSection
boolean
No
Indicates whether the menu item is a new section. The default value is false.
parent
string
No
The parent menu.
sortOrder
integer
No
The position of the menu, relative to other menus in the section. A value of 1 indicates the menu will be listed first. If this parameter is not specified, it will be placed randomly.
title
string
No
The title to display.
  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2024 Adobe. All rights reserved.