25 lines
694 B
Smarty
25 lines
694 B
Smarty
{**
|
|
* 2012 - 2020 HiPresta
|
|
*
|
|
* MODULE Gallery
|
|
*
|
|
* @author HiPresta <support@hipresta.com>
|
|
* @copyright HiPresta 2020
|
|
* @license Addons PrestaShop license limitation
|
|
* @link https://hipresta.com
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* Don't use this module on several shops. The license provided by PrestaShop Addons
|
|
* for all its modules is valid only once for a single shop.
|
|
*}
|
|
|
|
{if $social_account_images && $social_account_images|count > 0}
|
|
{foreach $social_account_images as $image}
|
|
<div class="social-account-image-item col-lg-2">
|
|
<img src="{$image}">
|
|
<input type="checkbox" name="social_account_image" value="{$image}">
|
|
</div>
|
|
{/foreach}
|
|
{/if}
|