{# Requires the variable `menu` #} {% macro addMenuItem(item) %} {# Get the url of the menu item #} {% set url = null %} {% if item.route is defined %} {% set url = url(item.route, item.route_params|default([])) %} {% endif %} {% if item.href is defined %} {% set url = item.href %} {% endif %} {# Build the menu item #} {% endmacro %} {% macro addLogOffMenuItem(item) %} {# Get the url of the menu item #} {% set url = null %} {% if item.route is defined %} {% set url = url(item.route, item.route_params|default([])) %} {% endif %} {% if item.href is defined %} {% set url = item.href %} {% endif %} {# Build the menu item #} {% endmacro %} {# Requires the variable `menu` #} {% macro addSubMenu(item) %} {% set parentName = item.id | default(item.content|replace({' ' : ''}) ~ 'Group')|getMenuParentKey %} {% if item.children is defined %} {% endif %} {% endmacro %}