mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
38 lines
1.4 KiB
Twig
38 lines
1.4 KiB
Twig
{% apply replace({"\n": ' ', "\t": ''}) %}
|
|
<select
|
|
{% if CLASS %}class="{{ CLASS }}" {% endif %}
|
|
{% if ID %}id="{{ ID }}" {% endif %}
|
|
{% for attribute, attribute_value in DATA %}
|
|
data-{{ attribute|e }}="{{ attribute_value|e('html_attr') }}"
|
|
{% endfor %}
|
|
name="{{ NAME }}"
|
|
{% if TOGGLEABLE %}data-togglable-settings="true" {% endif %}
|
|
|
|
{% if MULTIPLE %}multiple="multiple" {% endif %}
|
|
{% if SIZE %}size="{{ SIZE }}" {% endif %}>
|
|
{% endapply %}
|
|
{% for element in OPTIONS %}
|
|
{% if not GROUP_ONLY and element.options %}
|
|
{% apply replace({"\n": ' ', '\t': ''}) %}
|
|
<optgroup
|
|
{% for key, value in element.data %}
|
|
data-{{ key }}="{{ value }}"
|
|
{% endfor %}
|
|
label="{{ element.label }}">
|
|
{% endapply %}
|
|
{% for option in element.options %}
|
|
<option
|
|
value="{{ option.value }}"
|
|
{% if option.selected %}selected="selected"{% endif %}
|
|
{% if option.disabled %} disabled="disabled"{% endif %}{% if option.class %} class="{{ option.class }}"{% endif %}>{{ option.label }}</option>
|
|
{% endfor %}
|
|
</optgroup>
|
|
{% else %}
|
|
<option
|
|
value="{{ element.value }}"
|
|
{% if element.selected %} selected="selected"{% endif %}
|
|
{% if element.disabled %} disabled="disabled"{% endif %}{% if element.class %} class="{{ element.class }}"{% endif %}
|
|
{% if element.data %}{% for key, value in element.data %} data-{{ key }}="{{ value }}"{% endfor %}{% endif %}>{{ element.label }}</option>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</select>
|