50 lines
1.8 KiB
Smarty
50 lines
1.8 KiB
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.
|
|
*}
|
|
|
|
<div class="panel gallery-social-account-images-container">
|
|
<div class="form-wrapper">
|
|
<div class="row load-more-images-container">
|
|
{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}
|
|
{else}
|
|
<div class="list-empty-msg">
|
|
<i class="icon-warning-sign list-empty-icon"></i>
|
|
{l s='No records found' mod='higallery'}
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
|
|
{if $ig_next_page}
|
|
<a href="{$ig_next_page}" class="btn btn-default load-more-ig-images">
|
|
<i class="icon-refresh"></i>
|
|
{l s='Load more images' mod='higallery'}
|
|
</a>
|
|
{/if}
|
|
</div>
|
|
|
|
<div class="panel-footer">
|
|
<button class="btn btn-default pull-left back-to-select-social-accounts"><i class="process-icon-back"></i> {l s='Back'}</button>
|
|
{if $social_account_images && $social_account_images|count > 0}
|
|
<button class="btn btn-default pull-right import-social-images"><i class="process-icon-import"></i> {l s='Import Selected Images'}</button>
|
|
{/if}
|
|
</div>
|
|
</div>
|