mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-25 11:38:44 +02:00
14 lines
538 B
Twig
14 lines
538 B
Twig
{% extends 'base/components/popover-menu/item/layout.html.twig' %}
|
|
|
|
{% block iboPopoverMenuItem %}
|
|
<a class="ibo-popover-menu--item" data-role="ibo-popover-menu--item" href="{{ oUIBlock.GetUrl() }}" onclick="{{ oUIBlock.GetJsCode()|escape }}"
|
|
{% if oUIBlock.GetDataAttributes() %}
|
|
{% for sName, sValue in oUIBlock.GetDataAttributes() %}
|
|
data-{{ sName }}="{{ sValue }}"
|
|
{% endfor %}
|
|
{% endif %}
|
|
>
|
|
{{ oUIBlock.GetLabel() }}
|
|
</a>
|
|
{% endblock %}
|