text-format-wrapper.html.twig
Same filename in this branch
- 11.x core/profiles/demo_umami/themes/umami/templates/classy/content-edit/text-format-wrapper.html.twig
- 11.x core/themes/olivero/templates/text-format-wrapper.html.twig
- 11.x core/themes/stable9/templates/content-edit/text-format-wrapper.html.twig
- 11.x core/themes/claro/templates/text-format-wrapper.html.twig
- 11.x core/themes/starterkit_theme/templates/content-edit/text-format-wrapper.html.twig
Same filename in other branches
- 9 core/profiles/demo_umami/themes/umami/templates/classy/content-edit/text-format-wrapper.html.twig
- 9 core/themes/olivero/templates/text-format-wrapper.html.twig
- 9 core/themes/stable9/templates/content-edit/text-format-wrapper.html.twig
- 9 core/themes/seven/templates/classy/content-edit/text-format-wrapper.html.twig
- 9 core/themes/claro/templates/text-format-wrapper.html.twig
- 9 core/themes/bartik/templates/classy/content-edit/text-format-wrapper.html.twig
- 9 core/themes/stable/templates/content-edit/text-format-wrapper.html.twig
- 9 core/themes/starterkit_theme/templates/content-edit/text-format-wrapper.html.twig
- 9 core/themes/classy/templates/content-edit/text-format-wrapper.html.twig
- 9 core/modules/filter/templates/text-format-wrapper.html.twig
- 8.9.x core/profiles/demo_umami/themes/umami/templates/classy/content-edit/text-format-wrapper.html.twig
- 8.9.x core/themes/seven/templates/classy/content-edit/text-format-wrapper.html.twig
- 8.9.x core/themes/claro/templates/text-format-wrapper.html.twig
- 8.9.x core/themes/bartik/templates/classy/content-edit/text-format-wrapper.html.twig
- 8.9.x core/themes/stable/templates/content-edit/text-format-wrapper.html.twig
- 8.9.x core/themes/classy/templates/content-edit/text-format-wrapper.html.twig
- 8.9.x core/modules/filter/templates/text-format-wrapper.html.twig
- 10 core/profiles/demo_umami/themes/umami/templates/classy/content-edit/text-format-wrapper.html.twig
- 10 core/themes/olivero/templates/text-format-wrapper.html.twig
- 10 core/themes/stable9/templates/content-edit/text-format-wrapper.html.twig
- 10 core/themes/claro/templates/text-format-wrapper.html.twig
- 10 core/themes/starterkit_theme/templates/content-edit/text-format-wrapper.html.twig
- 10 core/modules/filter/templates/text-format-wrapper.html.twig
Default theme implementation for a text format-enabled form element.
Available variables:
- children: Text format element children.
- description: Text format element description.
- attributes: HTML attributes for the containing element.
- aria_description: Flag for whether or not an ARIA description has been added to the description container.
See also
template_preprocess_text_format_wrapper()
File
-
core/
modules/ filter/ templates/ text-format-wrapper.html.twig
View source
- {#
- /**
- * @file
- * Default theme implementation for a text format-enabled form element.
- *
- * Available variables:
- * - children: Text format element children.
- * - description: Text format element description.
- * - attributes: HTML attributes for the containing element.
- * - aria_description: Flag for whether or not an ARIA description has been
- * added to the description container.
- *
- * @see template_preprocess_text_format_wrapper()
- *
- * @ingroup themeable
- */
- #}
- <div class="js-text-format-wrapper js-form-item form-item">
- {{ children }}
- {% if description %}
- <div{{ attributes }}>{{ description }}</div>
- {% endif %}
- </div>
Related topics
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.