SMARTY : how to perform foreach in an array
- by user1020027
I use smarty on a prestashop template.
this is the code I use
{Product::getProductCategoriesFull($product.id_product)}
It give me an array... with array inside. this is an exemple :
Array
(
[2] => Array
(
[id_category] => 2
[name] => Accueil
[link_rewrite] => home
)
[7] => Array
(
[id_category] => 7
[name] => Dancefloor
[link_rewrite] => dancefloor
)
[12] => Array
(
[id_category] => 12
[name] => other
[link_rewrite] => other
)
)
I would like to find a way to get all the "link_rewrite" element : home,dancefloor,other.
It's possible with php, but the script is on a .tpl file. So How can I do this with smarty ?
Regards