mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-25 20:58:55 +00:00
10 lines
345 B
Twig
10 lines
345 B
Twig
{% apply replace({"\n": ' ', '\t': ''}) %}
|
|
<textarea
|
|
{% if CLASS %}class="{{ CLASS }}" {% endif %}
|
|
id="{{ ID }}"
|
|
{% for attribute, attribute_value in DATA %}
|
|
data-{{ attribute|e }}="{{ attribute_value|e('html_attr') }}"
|
|
{% endfor %}
|
|
name="{{ NAME }}"
|
|
rows="{{ ROWS }}"
|
|
cols="{{ COLS }}">{% endapply %}{{ CONTENT }}</textarea>
|