Same filename in this branch
  1. 10 core/modules/filter/templates/text-format-wrapper.html.twig
  2. 10 core/themes/claro/templates/text-format-wrapper.html.twig
  3. 10 core/themes/olivero/templates/text-format-wrapper.html.twig
  4. 10 core/themes/stable9/templates/content-edit/text-format-wrapper.html.twig
  5. 10 core/themes/starterkit_theme/templates/content-edit/text-format-wrapper.html.twig
  6. 10 core/profiles/demo_umami/themes/umami/templates/classy/content-edit/text-format-wrapper.html.twig
Same filename and directory in other branches
  1. 8.9.x core/modules/filter/templates/text-format-wrapper.html.twig
  2. 9 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
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for a text format-enabled form element.
  5. *
  6. * Available variables:
  7. * - children: Text format element children.
  8. * - description: Text format element description.
  9. * - attributes: HTML attributes for the containing element.
  10. * - aria_description: Flag for whether or not an ARIA description has been
  11. * added to the description container.
  12. *
  13. * @see template_preprocess_text_format_wrapper()
  14. *
  15. * @ingroup themeable
  16. */
  17. #}
  18. <div class="js-text-format-wrapper js-form-item form-item">
  19. {{ children }}
  20. {% if description %}
  21. <div{{ attributes }}>{{ description }}</div>
  22. {% endif %}
  23. </div>

Related topics