Files
newwalls.pl/modules/higallery/views/templates/admin/select-social-account.tpl
2024-12-17 13:43:22 +01:00

46 lines
1.9 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-accounts-container">
<h3>{l s='Select Social Account' mod='higallery'}</h3>
<div class="select-social-account row">
{if $social_accounts && $social_accounts|count > 0}
{foreach $social_accounts as $social_account}
<div class="social-account-itme col-lg-3">
<div class="panel">
<h3><i class="icon-{$social_account.social_network}"></i> {$social_account.title}</h3>
<div class="content">
<button class="btn btn-default load-social-images" data-social-id="{$social_account.id_higallerysocialnetwork|intval}">
<i class="icon-{$social_account.social_network}"></i>
{l s='Import from' mod='higallery'} {$social_account.title}
</button>
</div>
</div>
</div>
{/foreach}
{/if}
<div class="social-account-itme col-lg-3">
<div class="panel">
<h3><i class="icon-plus"></i> {l s='Add new Social Account'}</h3>
<a href="{$add_social_accounts_url}" class="btn btn-default"><i class="icon-plus"></i> {l s='Add new Social Account'}</a>
</div>
</div>
</div>
<div class="panel-footer">
<button class="btn btn-default pull-left back-to-upload-image"><i class="process-icon-back"></i> {l s='Back'}</button>
</div>
</div>