a5ee9ec98c
git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@10154 b9a71923-0436-4b27-9f14-aed3839534dd
16 lines
393 B
Smarty
16 lines
393 B
Smarty
{extends file="helper/form/form.tpl"}
|
|
{block name="after"}
|
|
<script type="text/javascript">
|
|
startingData = new Array();
|
|
{foreach from=$products item=product key=key}
|
|
startingData[{$key}] = new Array(
|
|
'{$product.details->name}',
|
|
'{$product.id_product}',
|
|
{$product.x_axis},
|
|
{$product.y_axis},
|
|
{$product.zone_width},
|
|
{$product.zone_height});
|
|
{/foreach}
|
|
</script>
|
|
{/block}
|