thelia/choice-filter-module
最新稳定版本:2.1.1
Composer 安装命令:
composer require thelia/choice-filter-module
包简介
Allows the management of filters in front by template and category
README 文档
README
This module allows the management of filters in front by template and category
Installation
Manually
- Copy the module into
<thelia_root>/local/modules/directory and be sure that the name of the module is ChoiceFilter. - Activate it in your thelia administration panel
Composer
Add it in your main thelia composer.json file
composer require thelia/choice-filter-module:~2.0.0
Usage
You can choose the position of the filters
- When you edit a template
- When you edit a category
Loop
[choice_filter]
Input arguments
| Argument | Description |
|---|---|
| template_id | id of template |
| category_id | id of category |
| order | position or position_reverse |
Output arguments
| Variable | Description |
|---|---|
| $TYPE | feature or attribute or other |
| $ID | id of filter |
| $POSITION | position of filter |
| $VISIBLE | visible of filter |
Exemple
For a template
{loop name="choice_filter" type="choice_filter" template_id=$template_id} {if $TYPE == "feature" and $VISIBLE} {loop type="feature" name="feature-$ID" id=$ID} {* your code *} {/loop} {elseif $TYPE == "attribute" and $VISIBLE} {loop type="attribute" name="attribute-$ID" id=$ID} {* your code *} {/loop} {elseif $TYPE == "brand" and $VISIBLE} {* your code *} {elseif $TYPE == "price" and $VISIBLE} {* your code *} {/if} {/loop}
For a category
{loop name="choice_filter" type="choice_filter" category_id=$category_id} {if $TYPE == "feature" and $VISIBLE} {loop type="feature" name="feature-$ID" id=$ID} {* your code *} {/loop} {elseif $TYPE == "attribute" and $VISIBLE} {loop type="attribute" name="attribute-$ID" id=$ID} {* your code *} {/loop} {elseif $TYPE == "brand" and $VISIBLE} {* your code *} {elseif $TYPE == "price" and $VISIBLE} {* your code *} {/if} {/loop}
for performance, it is best to use a cache block http://doc.thelia.net/en/documentation/templates/smarty/cache.html
{cache key="choice-filter" ttl=600 category_id==$category_id} {loop name="choice_filter" type="choice_filter" category_id=$category_id} {if $TYPE == "feature" and $VISIBLE} {loop type="feature" name="feature-$ID" id=$ID} {* your code *} {/loop} {elseif $TYPE == "attribute" and $VISIBLE} {loop type="attribute" name="attribute-$ID" id=$ID} {* your code *} {/loop} {elseif $TYPE == "brand" and $VISIBLE} {* your code *} {elseif $TYPE == "price" and $VISIBLE} {* your code *} {/if} {/loop} {/cache}
统计信息
- 总下载量: 17.69k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: LGPL-3.0
- 更新时间: 2018-09-25