Guest User

Untitled

a guest
Dec 9th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. {% set cols = {} %}
  2.  
  3. {% for name, id in categories %}
  4. {% set cols = cols|merge({ ('' ~ name) : [id] }) %}
  5. {% endfor %}
  6.  
  7. {{dump(cols)}} // This line prints a two dimensional array correctly!
  8.  
  9. {{ knp_pagination_filter(articles, cols, ['p.category_id']) }}
Add Comment
Please, Sign In to add comment