mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
15 lines
874 B
Twig
15 lines
874 B
Twig
{% block iboInputLabel %}
|
|
{% endblock %}
|
|
{% block iboInput %}
|
|
<input type="{{ oUIBlock.GetType() }}" id="{{ oUIBlock.GetId() }}" name="{{ oUIBlock.GetName() }}" value="{{ oUIBlock.GetValue()|raw }}"
|
|
class="{% if oUIBlock.IsHidden() %} ibo-is-hidden{% endif %}{% if oUIBlock.GetAdditionalCSSClassesAsString() %} {{ oUIBlock.GetAdditionalCSSClassesAsString() }}{% endif %}"
|
|
{% if oUIBlock.IsChecked() %} checked="checked"{% endif %}
|
|
{% if oUIBlock.IsDisabled() %} disabled{% endif %}
|
|
{% if oUIBlock.GetDataAttributes() %}
|
|
{% for sName, sValue in oUIBlock.GetDataAttributes() %}
|
|
data-{{ sName }}="{{ sValue }}"
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% if oUIBlock.GetPlaceHolder() %} placeholder="{{ oUIBlock.GetPlaceHolder() }}" {% endif %}
|
|
>
|
|
{% endblock %} |