Skip to content

Instantly share code, notes, and snippets.

View danielroehrig-mm's full-sized avatar

danielroehrig-mm

View GitHub Profile
@danielroehrig-mm
danielroehrig-mm / macros.html.twig
Created June 15, 2018 15:40
Multilevel Menus Avanzu AdminThemeBundle 1.*
{% macro menu_item(item) %}
{% import _self as macros %}
{% if item.route or item.hasChildren %}
<li id="{{ item.identifier }}"
class=" {{ item.isActive ? 'active' : '' }} {{ item.hasChildren? 'treeview' : '' }}">
<a href="{{ item.hasChildren ? '#': '/' in item.route ? item.route : path(item.route, item.routeArgs) }}">
{% if item.icon %} <i class="{{ item.icon }}"></i> {% endif %}
<span>{{ item.label }}</span>
{% if item.badge %}
<small class="label pull-right bg-{{ item.badgeColor }}">{{ item.badge }}</small>