HEX
Server: Apache
System: Linux srv13.cpanelhost.cl 3.10.0-962.3.2.lve1.5.38.el7.x86_64 #1 SMP Thu Jun 18 05:28:41 EDT 2020 x86_64
User: cca63905 (4205)
PHP: 7.3.20
Disabled: NONE
Upload Files
File: //proc/self/root/proc/self/cwd/nueva/modules/blockwishlist/views/templates/front/mywishlist.tpl
{*
* 2007-2016 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-2016 PrestaShop SA
*  @license    http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*}
{extends file='page.tpl'}

{block name='page_content'}
<div class="col-sm-12 col-xs-12">
    <div id="mywishlist">
    	{*capture name=path}
    		<a href="{$link->getPageLink('my-account', true)|escape:'html':'UTF-8'}">
    			{l s='My account' mod='blockwishlist'}
    		</a>
    		<span class="navigation-pipe">
    			{if isset($navigationPipe)}{$navigationPipe|escape:'html':'UTF-8'}{/if}
    		</span>
    		<span class="navigation_page">
    			{l s='My wishlists' mod='blockwishlist'}
    		</span>
    	{/capture*}
    
    	{*<h1 class="page-heading">{l s='My wishlists' mod='blockwishlist'}</h1>*}
    
    	{if isset($errors) && $errors}
        	<div class="alert alert-danger">
        		<p>{if $errors|@count > 1}{l s='There are %d errors' sprintf=$errors|@count}{else}{l s='There is %d error' sprintf=$errors|@count}{/if}</p>
        		<ol>
        		{foreach from=$errors key=k item=error}
        			<li>{$error|escape:'html':'UTF-8'}</li>
        		{/foreach}
        		</ol>
        		{if isset($smarty.server.HTTP_REFERER) && !strstr($request_uri, 'authentication') && preg_replace('#^https?://[^/]+/#', '/', $smarty.server.HTTP_REFERER) != $request_uri}
        			<p class="lnk"><a class="alert-link" href="#" title="{l s='Back'}">&laquo; {l s='Back'}</a></p>
        		{/if}
        	</div>
        {/if}
    
    	{if $id_customer|intval neq 0}
    		<form method="post" class="std box" id="form_wishlist">
    			<fieldset>
    				<h3 class="page-subheading">{l s='New wishlist' mod='blockwishlist'}</h3>
    				<div class="form-group">
    					<input type="hidden" name="token" value="{$token|escape:'html':'UTF-8'}" />
    					<label class="align_right" for="name">
    						{l s='Name' mod='blockwishlist'}
    					</label>
    					<input type="text" id="name" name="name" class="inputTxt form-control" value="{if isset($smarty.post.name) and $errors|@count > 0}{$smarty.post.name|escape:'html':'UTF-8'}{/if}" />
    				</div>
    				<p class="submit">
                        <button id="submitWishlist" class="btn btn-primary button button-medium" type="submit" name="submitWishlist">
                        	<span>{l s='Save' mod='blockwishlist'}</span>
                        </button>
    				</p>
    			</fieldset>
    		</form>
    		{if $wishlists}
    			<div id="block-history" class="block-center">
    				<table class="table table-bordered">
    					<thead>
    						<tr>
    							<th class="first_item">{l s='Name' mod='blockwishlist'}</th>
    							<th class="item mywishlist_first">{l s='Qty' mod='blockwishlist'}</th>
    							<th class="item mywishlist_first">{l s='Viewed' mod='blockwishlist'}</th>
    							<th class="item mywishlist_second">{l s='Created' mod='blockwishlist'}</th>
    							<th class="item mywishlist_second">{l s='Direct Link' mod='blockwishlist'}</th>
    							<th class="item mywishlist_second">{l s='Default' mod='blockwishlist'}</th>
    							<th class="last_item mywishlist_first">{l s='Delete' mod='blockwishlist'}</th>
    						</tr>
    					</thead>
    					<tbody>
    						{section name=i loop=$wishlists}
    							<tr id="wishlist_{$wishlists[i].id_wishlist|intval}">
    								<td style="width:200px;">
    									<a href="#" onclick="javascript:event.preventDefault();WishlistManage('block-order-detail', '{$wishlists[i].id_wishlist|intval}');">
    										{$wishlists[i].name|truncate:30:'...'|escape:'htmlall':'UTF-8'}
    									</a>
    								</td>
    								<td class="bold align_center">
    									{assign var=n value=0}
    									{foreach from=$nbProducts item=nb name=i}
    										{if $nb.id_wishlist eq $wishlists[i].id_wishlist}
    											{assign var=n value=$nb.nbProducts|intval}
    										{/if}
    									{/foreach}
    									{if $n}
    										{$n|intval}
    									{else}
    										0
    									{/if}
    								</td>
    								<td>{$wishlists[i].counter|intval}</td>
    								<td>{$wishlists[i].date_add|date_format:"%Y-%m-%d"}</td>
    								<td>
    									<a href="#" onclick="javascript:event.preventDefault();WishlistManage('block-order-detail', '{$wishlists[i].id_wishlist|intval}');">
    										{l s='View' mod='blockwishlist'}
    									</a>
    								</td>
    								<td class="wishlist_default">
    									{if isset($wishlists[i].default) && $wishlists[i].default == 1}
    										<p class="is_wish_list_default">
    											<i class="fa fa-check-square"></i>
    										</p>
    									{else}
    										<a href="#" onclick="javascript:event.preventDefault();(WishlistDefault('wishlist_{$wishlists[i].id_wishlist|intval}', '{$wishlists[i].id_wishlist|intval}'));">
    											<i class="fa fa-square"></i>
    										</a>
    									{/if}
    								</td>
    								<td class="wishlist_delete">
    									<a class="icon" href="#" onclick="javascript:event.preventDefault();return (WishlistDelete('wishlist_{$wishlists[i].id_wishlist|intval}', '{$wishlists[i].id_wishlist|intval}', '{l s='Do you really want to delete this wishlist ?' mod='blockwishlist' js=1}'));">
    										<i class="fa fa-remove"></i>
    									</a>
    								</td>
    							</tr>
    						{/section}
    					</tbody>
    				</table>
    			</div>
    			<div id="block-order-detail">&nbsp;</div>
    		{/if}
    	{/if}
    	<div class="footer_links wishlist_footer clearfix">
    		
    			<a class="btn btn-secondary button button-small" href="{$link->getPageLink('my-account', true)|escape:'html':'UTF-8'}">
    				<span>
    					{l s='Back to Your Account' mod='blockwishlist'}
    				</span>
    			</a>
    			<a class="btn btn-primary button button-small pull-right" href="{if isset($base_url) && $base_url}{$base_url|escape:'html':'UTF-8'}{else}#{/if}">
    				<span>
    					{l s='Home' mod='blockwishlist'}
    				</span>
    			</a>
    	</div>
    </div>
</div>
{/block}