I would like to render a tree with an undetermined depth (children of children of children etc...). I need to loop through the array recursively, how can I do this in Twig?

Regards, Ron

link|improve this question
+1 for very interesting question ! – domi27 Dec 1 '11 at 12:12
feedback

2 Answers

Thanks domi27, I played around with your idea and came up with this. I made a nested array as my tree, ['link']['sublinks'] is null or another array of more of the same.

Templates

The sub-template file to recurse with:

<!--includes/menu-links.html-->
{% for link in links %}
    <li>
        <a href="{{ link.href }}">{{ link.name }}</a>
        {% if link.sublinks %}
            <ul>
                {% include "includes/menu-links.html" with {'links': link.sublinks} %}
            </ul>
        {% endif %}
    </li>
{% endfor %}

Then in the main template call this (kinda redundant 'with' stuff there):

<ul class="main-menu">
    {% include "includes/menu-links.html" with {'links':links} only %}
</ul>

Macros

A similar effect can be achieved with macros:

<!--macros/menu-macros.html-->
{% macro menu_links(links) %}
    {% for link in links %}
        <li>
            <a href="{{ link.href }}">{{ link.name }}</a>
            {% if link.sublinks %}
                <ul>
                    {{ _self.menu_links(link.sublinks) }}
                </ul>
            {% endif %}
        </li>
    {% endfor %}
{% endmacro %}

In the main template do this:

{% import "macros/menu-macros.html" as macros %}
<ul class="main-menu">
    {{ macros.menu_links(links) }}
</ul>

Hope it helps :)

link|improve this answer
feedback

First i thought, this may be solved straightforward - but it isn't that easy.

You need to create a logic, maybe with a php class method, when to include a twig subtemplate and when not.

<!-- tpl.html.twig -->
<ul>
{% for key, item in menu %}
    {# pseudo twig code #}
    {% if item|hassubitem %}
        {% include "subitem.html.tpl" %}
    {% else %}
        <li>{{ item }}</li>
    {% endif %}
{% endfor %}
</ul>

So you could use the special twig loop variable , which is available inside a twig for loop. But i'm not sure about the scope of this loop variable.

Sorry for provide only an approach not a solution, but perhaps i hope my thoughts may help you (a little bit).

This and other informations are available on Twigs "for" Docu !

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.