Files
PrestaShop/admin-dev/themes/template/scenes/form.tpl
T
2011-11-16 08:52:18 +00:00

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}