You are here

seeds-toolbar-menu.html.twig in Seeds Toolbar 8

Default theme implementation to display a toolbar menu.

Available variables:

  • menu_name: The machine name of the menu.
  • items: A nested list of menu items. Each menu item contains:
    • attributes: HTML attributes for the menu item.
    • below: The menu item child items.
    • title: The menu link title.
    • url: The menu link url, instance of \Drupal\Core\Url
    • localized_options: Menu link localized options.
    • is_expanded: TRUE if the link has visible children within the current menu tree.
    • is_collapsed: TRUE if the link has children within the current menu tree that are not currently visible.
    • in_active_trail: TRUE if the link is in the active trail.

File

templates/seeds-toolbar-menu.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation to display a toolbar menu.
  5. *
  6. * Available variables:
  7. * - menu_name: The machine name of the menu.
  8. * - items: A nested list of menu items. Each menu item contains:
  9. * - attributes: HTML attributes for the menu item.
  10. * - below: The menu item child items.
  11. * - title: The menu link title.
  12. * - url: The menu link url, instance of \Drupal\Core\Url
  13. * - localized_options: Menu link localized options.
  14. * - is_expanded: TRUE if the link has visible children within the current
  15. * menu tree.
  16. * - is_collapsed: TRUE if the link has children within the current menu tree
  17. * that are not currently visible.
  18. * - in_active_trail: TRUE if the link is in the active trail.
  19. *
  20. * @ingroup themeable
  21. */
  22. #}
  23. {% import _self as menus %}
  24. {#
  25. We call a macro which calls itself to render the full tree.
  26. @see http://twig.sensiolabs.org/doc/tags/macro.html
  27. #}
  28. {{ menus.menu_links(items, attributes, 0,logo_link) }}
  29. {% macro menu_links(items, attributes, menu_level, logo_link) %}
  30. {% import _self as menus %}
  31. {% if items %}
  32. {% if menu_level == 0 %}
  33. <ul{{attributes.addClass('toolbar-menu')}}>
  34. {% else %}
  35. <ul class="toolbar-menu">
  36. {% endif %}
  37. {% for item in items %}
  38. {% if loop.first and menu_level == 0 %}{% endif %}
  39. {%
  40. set classes = [
  41. 'menu-item',
  42. item.is_expanded ? 'menu-item--expanded',
  43. item.is_collapsed ? 'menu-item--collapsed',
  44. item.in_active_trail ? 'menu-item--active-trail',
  45. ]
  46. %}
  47. {% if loop.first and menu_level == 0 %}
  48. <li{{item.attributes.addClass(classes,'toolbar-fixed-help-item')}}>
  49. <a href={{item.url}}>
  50. <img src="{{logo_link}}"/>
  51. </a>
  52. {% if item.below %}
  53. {{ menus.menu_links(item.below, attributes, menu_level + 1) }}
  54. {% endif %}
  55. </li>
  56. {% else %}
  57. {% set url_attributes = create_attribute() %}
  58. <li{{item.attributes.addClass(classes)}}>
  59. {{link(item.title,item.url)}}
  60. {% if item.below %}
  61. <span class="seeds-expand-item"></span>
  62. {{ menus.menu_links(item.below, attributes, menu_level + 1) }}
  63. {% endif %}
  64. </li>
  65. {% endif %}
  66. {% endfor %}
  67. </ul>
  68. {% endif %}
  69. {% endmacro %}