Files
wordpress-preseed/wp-content/plugins/all-in-one-event-calendar/public/admin/twig/setting/textarea.twig
Adrian Nöthlich 290736650a Add upstream plugins
Signed-off-by: Adrian Nöthlich <git@promasu.tech>
2019-10-25 22:42:20 +02:00

23 lines
548 B
Twig

<label class="ai1ec-col-sm-12" for="{{ id }}">
{{ label | raw }}
</label>
<div class="ai1ec-col-sm-12">
{% if append is defined %}
<div class="ai1ec-input-group">
{% endif %}
{% from 'form-elements/textarea.twig' import textarea %}
{% spaceless %}
{{ textarea( id, id, value, input_args ) }}
{% if append is defined %}
<span class="ai1ec-input-group-addon">{{ append }}</span>
</div>
{% endif %}
{% endspaceless %}
</div>
{% if help is defined %}
<div class="ai1ec-col-sm-12 ai1ec-help-block">{{ help | raw }}</div>
{% endif %}