mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-22 11:18:52 +00:00
11 lines
432 B
Twig
11 lines
432 B
Twig
{% apply replace({"\n": ' ', '\t': ''}) %}
|
|
<textarea
|
|
{% 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 }}"
|
|
rows="{{ ROWS }}"
|
|
cols="{{ COLS }}"
|
|
{% if PLACEHOLDER %}placeholder="{{ PLACEHOLDER }}"{% endif %}>{% endapply %}{{ CONTENT }}</textarea>
|