1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-05-19 17:28:23 +03:00
ifhub.club/application/frontend/skin/synio/components/sort/sort.ajax.tpl
2016-09-02 10:16:20 +07:00

27 lines
799 B
Smarty

{**
* Блок сортировки
*
* @param array $items
* @param array $text
* @param string $label
* @param boolean $showLabel
*}
{$component = 'ls-sort'}
{component_define_params params=[ 'items', 'text', 'label', 'mods', 'classes', 'attributes' ]}
{foreach $items as $item}
{$items[ $item@key ][ 'attributes' ] = array_merge( $items[ $item@key ][ 'attributes' ]|default:[], [
'data-name' => 'sort_by',
'data-value' => $item[ 'name' ],
'data-order' => $item[ 'order' ]|default:'desc'
])}
{/foreach}
<div class="{$component} {$classes}">
{component 'dropdown'
text = $text|default:'...'
classes = 'js-dropdown-default'
attributes = [ 'data-lsdropdown-selectable' => 'true' ]
menu = $items}
</div>