2.39.0 • Published 4 years ago
@ecl-twig/ec-component-menu v2.39.0
ECL-Twig Menu
npm package: @ecl-twig/ec-component-menu
npm install --save @ecl-twig/ec-component-menu
Parameters
- "title (string) (default: ''): Title
- "close" (string) (default: ''): Close button label
- "back" (string): (default: ''): Back button label
- "menu_link" (string): (default: ''): Href attribute of the menu toggler
- "icon_path" (string) (default: ''): Path to the icon sprite
- "items" (associative array) (default: {}): The menu items - format:
"label": (string) (default: '')
"path": (string) (default: '')
"is_current": (boolean) (optional),
"submenu_label": (string) (optional),
- "children": (associative array) (optional) "label": (string) (default: '') "path": (string) (default: '') "is_current": (boolean) (optional),
- "site_name" (string) (default: ''): Name of the website
- "extra_classes" (optional) (string) (default: '') Extra classes (space separated) for the nav element
- "extra_attributes" (optional) (array) (default: []) Extra attributes for the nav element
- "name" (string) Attribute name, eg. 'data-test'
- "value" (optional) (string) Attribute value, eg: 'data-test-1'
- "_compliance_" (boolean) (default: false) Activates debug
Example:
{% include '@ecl-twig/ec-component-menu/ecl-menu.html.twig' with {
title: 'Menu',
close: 'Close',
back: 'Back',
icon_path: '/icons.svg',
site_name: 'Site name',
menu_link: './example.com',
items: [
{
label: "Menu item",
path: "example",
is_current: false,
children: [
{
label: "Item 1.1",
path: "/example"
},
...
]
}
...
],
}
],
extra_classes: "ecl-menu-extra-class,
extra_attributes: [
{
name:"data-ecl-menu",
},
...
]
} %}
2.39.0
4 years ago
2.38.0
4 years ago
2.37.0
4 years ago
2.36.0
4 years ago
2.35.2
4 years ago
2.35.1
5 years ago
2.35.0
5 years ago
2.34.0
5 years ago
2.33.2
5 years ago
2.33.1
5 years ago
2.33.0
5 years ago
2.32.0
5 years ago
2.31.1
5 years ago
2.31.0
5 years ago
2.30.0
5 years ago
2.29.0
5 years ago
2.28.1
5 years ago
2.28.0
5 years ago
2.27.0
5 years ago
2.26.0
5 years ago
2.25.1
5 years ago
2.25.0
5 years ago
2.24.0
5 years ago
2.23.0
5 years ago
2.22.1
5 years ago
2.22.0
5 years ago
2.21.0
5 years ago
2.19.0
6 years ago