170 lines
7.3 KiB
Smarty
170 lines
7.3 KiB
Smarty
{**
|
|
* 2007-2017 PrestaShop
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* This source file is subject to the Open Software License (OSL 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/osl-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-2017 PrestaShop SA
|
|
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
|
* International Registered Trademark & Property of PrestaShop SA
|
|
*}
|
|
{$facetedsearch = ''}
|
|
{if Module::isEnabled('an_theme')}
|
|
{if Module::getInstanceByName('an_theme')->getParam('categoryPage_facetedsearch') == 'turnon'}
|
|
{$facetedsearch = 'turnon'}
|
|
{elseif Module::getInstanceByName('an_theme')->getParam('categoryPage_facetedsearch') == 'turnoff'}
|
|
{$facetedsearch = 'turnoff'}
|
|
{else}
|
|
{$facetedsearch = 'standard'}
|
|
{/if}
|
|
{/if}
|
|
<div id="search_filters">
|
|
|
|
{block name='facets_title'}
|
|
<h4 class="h6 hidden-sm-down">{l s='Filter By' d='Shop.Theme.Actions'}</h4>
|
|
{/block}
|
|
|
|
{foreach from=$facets item="facet"}
|
|
{if $facet.displayed}
|
|
<section class="facet clearfix">
|
|
{assign var=_expand_id value=10|mt_rand:100000}
|
|
{assign var=_collapse value=true}
|
|
{foreach from=$facet.filters item="filter"}
|
|
{if $filter.active}{assign var=_collapse value=false}{/if}
|
|
{/foreach}
|
|
<div class="title" data-target="#facet_{$_expand_id}" data-toggle="collapse"{if !$_collapse} aria-expanded="true"{/if}>
|
|
<h1 class="h6 facet-title">{$facet.label}</h1>
|
|
{if $facetedsearch != 'standard'}
|
|
<span class="pull-xs-right">
|
|
<span class="collapse-icons {if $facetedsearch == 'turnon'} collapsed{elseif $facetedsearch == 'turnoff'} expanded{/if}">
|
|
<i class="material-icons add"></i>
|
|
<i class="material-icons remove"></i>
|
|
</span>
|
|
</span>
|
|
{/if}
|
|
</div>
|
|
|
|
{if $facet.widgetType !== 'dropdown'}
|
|
|
|
{block name='facet_item_other'}
|
|
<ul id="facet_{$_expand_id}" {if $facetedsearch != 'standard'} class="collapse {/if} {if !$_collapse or $facetedsearch == 'turnon'} in{/if}">
|
|
{foreach from=$facet.filters item="filter"}
|
|
{if $filter.displayed}
|
|
<li>
|
|
<label class="facet-label{if $filter.active} active {/if}">
|
|
{if $facet.multipleSelectionAllowed}
|
|
<span class="custom-checkbox">
|
|
<input
|
|
data-search-url="{$filter.nextEncodedFacetsURL}"
|
|
type="checkbox"
|
|
{if $filter.active } checked {/if}
|
|
>
|
|
{if isset($filter.properties.color)}
|
|
<span class="color" style="background-color:{$filter.properties.color}"><i class="material-icons checkbox-checked"></i></span>
|
|
{elseif isset($filter.properties.texture)}
|
|
<span class="color texture" style="background-image:url({$filter.properties.texture})"></span>
|
|
{else}
|
|
<span {if !$js_enabled} class="ps-shown-by-js" {/if}><i class="material-icons checkbox-checked"></i></span>
|
|
{/if}
|
|
</span>
|
|
{else}
|
|
<span class="custom-radio">
|
|
<input
|
|
data-search-url="{$filter.nextEncodedFacetsURL}"
|
|
type="radio"
|
|
name="filter {$facet.label}"
|
|
{if $filter.active } checked {/if}
|
|
>
|
|
<span {if !$js_enabled} class="ps-shown-by-js" {/if}></span>
|
|
</span>
|
|
{/if}
|
|
|
|
<a
|
|
href="{$filter.nextEncodedFacetsURL}"
|
|
class="_gray-darker search-link js-search-link"
|
|
rel="nofollow"
|
|
>
|
|
{$filter.label}
|
|
{if $filter.magnitude}
|
|
<span class="magnitude">({$filter.magnitude})</span>
|
|
{/if}
|
|
</a>
|
|
</label>
|
|
</li>
|
|
{/if}
|
|
{/foreach}
|
|
</ul>
|
|
{/block}
|
|
|
|
{else}
|
|
|
|
{block name='facet_item_dropdown'}
|
|
<ul id="facet_{$_expand_id}" class="collapse{if !$_collapse} in{/if}">
|
|
<li>
|
|
<div class="col-sm-12 col-xs-12 col-md-12 facet-dropdown dropdown">
|
|
<a class="select-title" rel="nofollow" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
{$active_found = false}
|
|
<span>
|
|
{foreach from=$facet.filters item="filter"}
|
|
{if $filter.active}
|
|
{$filter.label}
|
|
{if $filter.magnitude}
|
|
({$filter.magnitude})
|
|
{/if}
|
|
{$active_found = true}
|
|
{/if}
|
|
{/foreach}
|
|
{if !$active_found}
|
|
{l s='(no filter)' d='Shop.Theme.Global'}
|
|
{/if}
|
|
</span>
|
|
<i class="material-icons pull-xs-right"></i>
|
|
</a>
|
|
<div class="dropdown-menu">
|
|
{foreach from=$facet.filters item="filter"}
|
|
{if !$filter.active}
|
|
<a
|
|
rel="nofollow"
|
|
href="{$filter.nextEncodedFacetsURL}"
|
|
class="select-list"
|
|
>
|
|
{$filter.label}
|
|
{if $filter.magnitude}
|
|
({$filter.magnitude})
|
|
{/if}
|
|
</a>
|
|
{/if}
|
|
{/foreach}
|
|
</div>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
{/block}
|
|
|
|
{/if}
|
|
</section>
|
|
{/if}
|
|
{/foreach}
|
|
{block name='facets_clearall_button'}
|
|
<div id="_desktop_search_filters_clear_all" class="hidden-sm-down clear-all-wrapper">
|
|
<button data-search-url="{$clear_all_link}" class="btn btn-primary js-search-filters-clear-all">
|
|
{l s='Clear all' d='Shop.Theme.Actions'}
|
|
</button>
|
|
</div>
|
|
{/block}
|
|
</div>
|