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
feedback
|
|
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:
Then in the main template call this (kinda redundant 'with' stuff there):
Macros A similar effect can be achieved with macros:
In the main template do this:
Hope it helps :) | |||
|
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.
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 ! | |||
|
feedback
|