Files
interblue.pl/modules/sendinblue/views/templates/admin/ajaxuserlist.tpl
2024-10-25 14:16:28 +02:00

157 lines
7.5 KiB
Smarty

{*
* 2007-2020 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2020 PrestaShop SA
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*}
{assign var=counter value=0}
<input type ="hidden" name="page_no" id="page_no" value="1">
{foreach from=$result item=sourceInfo}
{assign var=counter value=$counter+1}
<tr>
<td class="{$cl_version|escape:'htmlall':'UTF-8'|stripslashes}">
<div style="word-wrap:break-word; width:350px">{$sourceInfo.email|escape:'htmlall':'UTF-8'|stripslashes}</div>
</td>
{assign var="emailtest" value=$sourceInfo.email}
<td class="{$cl_version|escape:'htmlall':'UTF-8'|stripslashes}">
{if $sourceInfo.id_customer!= "Nclient"}
yes
{else}
No
{/if}
</td>
<td class="{$cl_version|escape:'htmlall':'UTF-8'|stripslashes}">
{if $sourceInfo.phone_mobile != ''}
{foreach from=$smsdata key=jk item=smsInfo}0
{if $jk == $sourceInfo.phone_mobile}
{$smsInfo|escape:'htmlall':'UTF-8'|stripslashes}
{/if}
{/foreach}
{elseif $sourceInfo.phone != ''}
{foreach from=$smsdata key=jk item=smsInfo}
{if $jk == $sourceInfo.phone}
{$smsInfo|escape:'htmlall':'UTF-8'|stripslashes}
{/if}
{/foreach}
{/if}
</td>
<td class="tipTd">
{assign var=emailid value=$sourceInfo.email}
{if isset($data[$emailid].email_bl) && $data[$emailid].email_bl ===1}
{assign var=pstatus value=1}
{elseif isset($data[$emailid].email_bl) && $data[$emailid].email_bl ===0}
{assign var=pstatus value=0}
{else}
{assign var=pstatus value=1}
{/if}
<a href="javascript:void(0)" class="ajax_contacts_href" email="{$sourceInfo.email|escape:'htmlall':'UTF-8'|stripslashes}" status="{$pstatus|intval}">
{if $pstatus==1}
<img class="toolTip1 imgstatus" title="{l s='Subscribe the contact' mod='sendinblue'}" id="ajax_contact_status_{$counter|intval}" src="../img/admin/disabled.gif" />
{else}
<img class="toolTip1 imgstatus" title="{l s='Unsubscribe the contact' mod='sendinblue'}" id="ajax_contact_status_{$counter|intval}" src="../img/admin/enabled.gif" />
{/if}
</a>
</td>
<td>
{if $sourceInfo.newsletter==1}
<img class="imgstatus" src="../img/admin/enabled.gif" />
{else}
<img class="imgstatus" src="../img/admin/disabled.gif" />
{/if}
</td>
<td class="tipTd">
{assign var=emailid value=$sourceInfo.email}
{if isset($data[$emailid].sms_bl) && $data[$emailid].sms_bl ===1}
{assign var=pstatus value=1}
{elseif isset($data[$emailid].sms_bl) && $data[$emailid].sms_bl ===0}
{assign var=pstatus value=0}
{else}
{assign var=pstatus value=1}
{/if}
{if !empty($sourceInfo.phone_mobile) || !empty($sourceInfo.phone)}
<input type="hidden" id = "sms_status_val" name="sms_status_val" value="{$pstatus|escape:'htmlall':'UTF-8'}">
{if $pstatus==1 && isset($data[$emailid].sms_exist) && $data[$emailid].sms_exist != ''}
<a href="javascript:void(0)" class="ajax_sms_href" email="{$sourceInfo.email|escape:'htmlall':'UTF-8'|stripslashes}"><img class="toolTip1 imgstatus" title="{l s='Subscribe the contact' mod='sendinblue'}" id="ajax_contact_status_{$counter|intval}" src="../img/admin/disabled.gif" /></a>
{elseif $pstatus==0 && isset($data[$emailid].sms_exist) && $data[$emailid].sms_exist != ''}
<a href="javascript:void(0)" class="ajax_sms_href" email="{$sourceInfo.email|escape:'htmlall':'UTF-8'|stripslashes}"><img class="toolTip1 imgstatus" title="{l s='Unsubscribe the contact' mod='sendinblue'}" id="ajax_contact_status_{$counter|intval}" src="../img/admin/enabled.gif" /></a>
{else}
{l s='Not synchronized' mod='sendinblue'}
{/if}
{/if}
</td>
</tr>
{/foreach}
<tr>
<td colspan='3'>
<div class='pagination'>
<ul>
{if $first_btn && $cur_page > 1}
<li p='1' class='active'>{l s='First' mod='sendinblue'}</li>
{elseif $first_btn}
<li p='1' class='inactive'>{l s='First' mod='sendinblue'}</li>
{/if}
{if $previous_btn && $cur_page > 1}
{assign var=pre value=$cur_page-1}
<li p='{$pre|escape:'htmlall':'UTF-8'|stripslashes}' class='active'>{l s='Previous' mod='sendinblue'}</li>
{elseif $previous_btn}
<li class='inactive'>{l s='Previous' mod='sendinblue'}</li>
{/if}
{section name=cu start=$start_loop loop=$end_loop+1 step=1}
{if $cur_page == $smarty.section.cu.index}
<li p='{$smarty.section.cu.index|escape:'htmlall':'UTF-8'|stripslashes}' style='color:#fff;background-color:#000;' class='active'>{$smarty.section.cu.index|escape:'htmlall':'UTF-8'|stripslashes}</li>
{else}
<li p='{$smarty.section.cu.index|escape:'htmlall':'UTF-8'|stripslashes}' class='active'>{$smarty.section.cu.index|escape:'htmlall':'UTF-8'|stripslashes}</li>
{/if}
{/section}
{if $last_btn && $cur_page < $no_of_paginations}
{assign var=nex value=$cur_page+1}
<li p='{$nex|escape:'htmlall':'UTF-8'|stripslashes}' class='active'>{l s='Next' mod='sendinblue'}</li>
{elseif $next_btn}
<li class='inactive'>{l s='Next' mod='sendinblue'}</li>
{/if}
{if $last_btn && $cur_page < $no_of_paginations}
<li p='{$no_of_paginations|escape:'htmlall':'UTF-8'|stripslashes}' class='active'>{l s='Last' mod='sendinblue'}</li>
{elseif $last_btn}
<li p='{$no_of_paginations|escape:'htmlall':'UTF-8'|stripslashes}' class='inactive'>{l s='Last' mod='sendinblue'}</li>
{/if}
</ul>
</div>
</td>
</tr>