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/developer/components/dropdown/dropdown.tpl

26 lines
742 B
Smarty

{**
* Выпадающее меню
*
* @param string text
* @param string activeItem
* @param array menu
*}
{* Название компонента *}
{$component = 'dropdown'}
{* Уникальный ID для привязки кнопки к меню *}
{$uid = "dropdown{rand( 0, 10e10 )}"}
{* Кнопка *}
{include 'components/button/button.tpl'
type = 'button'
classes = "{$component}-toggle {$smarty.local.classes}"
attributes = array_merge( $smarty.local.attributes|default:[], [ 'data-dropdown-target' => $uid ] )
text = $smarty.local.text}
{* Меню *}
{include './dropdown.menu.tpl'
id = $uid
activeItem = $smarty.local.activeItem
items = $smarty.local.menu}