book-tree.html.twig 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation 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. * @ingroup themeable
  21. */
  22. #}
  23. {% import _self as book_tree %}
  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. {{ book_tree.book_links(items, attributes, 0) }}
  29. {% macro book_links(items, attributes, menu_level) %}
  30. {% import _self as book_tree %}
  31. {% if items %}
  32. {% if menu_level == 0 %}
  33. <ul{{ attributes }}>
  34. {% else %}
  35. <ul>
  36. {% endif %}
  37. {% for item in items %}
  38. <li{{ item.attributes }}>
  39. {{ link(item.title, item.url) }}
  40. {% if item.below %}
  41. {{ book_tree.book_links(item.below, attributes, menu_level + 1) }}
  42. {% endif %}
  43. </li>
  44. {% endfor %}
  45. </ul>
  46. {% endif %}
  47. {% endmacro %}