1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-08 17:34:26 +03:00
ifhub.club/application/frontend/skin/synio/components/dropdown/dropdown.tpl
Denis Shakhov dd202f682f Шаблон Synio
Дефолтный шаблон изменен на synio
2016-10-10 22:51:04 +07:00

50 lines
1.6 KiB
Smarty

{**
* Выпадающее меню
*
* @param string text
* @param string activeItem
* @param boolean isSplit
* @param array menu
*}
{* Название компонента *}
{$component = 'ls-dropdown'}
{component_define_params params=[ 'text', 'icon', 'activeItem', 'isSplit', 'menu', 'mods', 'classes', 'attributes' ]}
{if ! $text}
{$mods = "$mods no-text"}
{/if}
{block 'dropdown_options'}{/block}
<div class="{$component} {cmods name=$component mods=$mods} {$classes} ls-nav--dropdown" {cattr list=$attributes}>
{* Кнопка *}
{if $isSplit}
{component 'button' template='group' buttons=[
[ 'text' => $text, 'mods' => $mods, 'attributes' => [ 'tabindex' => -1 ] ],
{component 'button'
type = 'button'
classes = "{$component}-toggle js-{$component}-toggle"
mods = "{$mods} no-text"
attributes = array_merge( $attributes|default:[], [
'aria-haspopup' => 'true',
'aria-expanded' => 'false'
])}
]}
{else}
{component 'button'
type = 'button'
classes = "{$component}-toggle js-{$component}-toggle"
mods = $mods
text = $text
icon = $icon
attributes = array_merge( $attributes|default:[], [
'aria-haspopup' => 'true',
'aria-expanded' => 'false'
])}
{/if}
{* Меню *}
{component 'dropdown' template='menu' activeItem=$activeItem items=$menu}
</div>