book-tree.html.twig

Same filename in this branch
  1. 11.x core/themes/olivero/templates/navigation/book-tree.html.twig
  2. 11.x core/themes/stable9/templates/navigation/book-tree.html.twig
  3. 11.x core/themes/claro/templates/classy/navigation/book-tree.html.twig
  4. 11.x core/modules/book/templates/book-tree.html.twig
Same filename and directory in other branches
  1. 9 core/profiles/demo_umami/themes/umami/templates/classy/navigation/book-tree.html.twig
  2. 9 core/themes/olivero/templates/navigation/book-tree.html.twig
  3. 9 core/themes/stable9/templates/navigation/book-tree.html.twig
  4. 9 core/themes/seven/templates/classy/navigation/book-tree.html.twig
  5. 9 core/themes/claro/templates/classy/navigation/book-tree.html.twig
  6. 9 core/themes/bartik/templates/classy/navigation/book-tree.html.twig
  7. 9 core/themes/stable/templates/navigation/book-tree.html.twig
  8. 9 core/themes/classy/templates/navigation/book-tree.html.twig
  9. 9 core/modules/book/templates/book-tree.html.twig
  10. 8.9.x core/profiles/demo_umami/themes/umami/templates/classy/navigation/book-tree.html.twig
  11. 8.9.x core/themes/seven/templates/classy/navigation/book-tree.html.twig
  12. 8.9.x core/themes/claro/templates/classy/navigation/book-tree.html.twig
  13. 8.9.x core/themes/bartik/templates/classy/navigation/book-tree.html.twig
  14. 8.9.x core/themes/stable/templates/navigation/book-tree.html.twig
  15. 8.9.x core/themes/classy/templates/navigation/book-tree.html.twig
  16. 8.9.x core/modules/book/templates/book-tree.html.twig
  17. 10 core/profiles/demo_umami/themes/umami/templates/classy/navigation/book-tree.html.twig
  18. 10 core/themes/olivero/templates/navigation/book-tree.html.twig
  19. 10 core/themes/stable9/templates/navigation/book-tree.html.twig
  20. 10 core/themes/claro/templates/classy/navigation/book-tree.html.twig
  21. 10 core/modules/book/templates/book-tree.html.twig

Theme override to display a book tree.

Returns HTML for a wrapper for a book sub-tree.

Available variables:

  • items: A nested list of book items. Each book item contains:

    • attributes: HTML attributes for the book item.
    • below: The book item child items.
    • title: The book link title.
    • url: The book link URL, instance of \Drupal\Core\Url.
    • is_expanded: TRUE if the link has visible children within the current book tree.
    • is_collapsed: TRUE if the link has children within the current book tree that are not currently visible.
    • in_active_trail: TRUE if the link is in the active trail.

File

core/profiles/demo_umami/themes/umami/templates/classy/navigation/book-tree.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override to display a book tree.
  5. *
  6. * Returns HTML for a wrapper for a book sub-tree.
  7. *
  8. * Available variables:
  9. * - items: A nested list of book items. Each book item contains:
  10. * - attributes: HTML attributes for the book item.
  11. * - below: The book item child items.
  12. * - title: The book link title.
  13. * - url: The book link URL, instance of \Drupal\Core\Url.
  14. * - is_expanded: TRUE if the link has visible children within the current
  15. * book tree.
  16. * - is_collapsed: TRUE if the link has children within the current book tree
  17. * that are not currently visible.
  18. * - in_active_trail: TRUE if the link is in the active trail.
  19. */
  20. #}
  21. {% import _self as book_tree %}
  22. {#
  23. We call a macro which calls itself to render the full tree.
  24. @see https://twig.symfony.com/doc/3.x/tags/macro.html
  25. #}
  26. {{ book_tree.book_links(items, attributes, 0) }}
  27. {% macro book_links(items, attributes, menu_level) %}
  28. {% import _self as book_tree %}
  29. {% if items %}
  30. {% if menu_level == 0 %}
  31. <ul{{ attributes.addClass('menu') }}>
  32. {% else %}
  33. <ul class="menu">
  34. {% endif %}
  35. {% for item in items %}
  36. {%
  37. set classes = [
  38. 'menu-item',
  39. item.is_expanded ? 'menu-item--expanded',
  40. item.is_collapsed ? 'menu-item--collapsed',
  41. item.in_active_trail ? 'menu-item--active-trail',
  42. ]
  43. %}
  44. <li{{ item.attributes.addClass(classes) }}>
  45. {{ link(item.title, item.url) }}
  46. {% if item.below %}
  47. {{ book_tree.book_links(item.below, attributes, menu_level + 1) }}
  48. {% endif %}
  49. </li>
  50. {% endfor %}
  51. </ul>
  52. {% endif %}
  53. {% endmacro %}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.