text-format-wrapper.html.twig in Drupal 10
Same filename in this branch
- 10 core/themes/claro/templates/text-format-wrapper.html.twig
- 10 core/themes/olivero/templates/text-format-wrapper.html.twig
- 10 core/modules/filter/templates/text-format-wrapper.html.twig
- 10 core/themes/starterkit_theme/templates/content-edit/text-format-wrapper.html.twig
- 10 core/themes/classy/templates/content-edit/text-format-wrapper.html.twig
- 10 core/themes/stable9/templates/content-edit/text-format-wrapper.html.twig
- 10 core/themes/stable/templates/content-edit/text-format-wrapper.html.twig
- 10 core/themes/seven/templates/classy/content-edit/text-format-wrapper.html.twig
- 10 core/themes/bartik/templates/classy/content-edit/text-format-wrapper.html.twig
- 10 core/profiles/demo_umami/themes/umami/templates/classy/content-edit/text-format-wrapper.html.twig
Same filename and directory in other branches
Theme override for a text format-enabled form element.
@todo Remove when https://www.drupal.org/node/3016346 and https://www.drupal.org/node/3016343 are fixed.
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.
- description_attributes: attributes for the description.
- disabled: An indicator for whether the associated form element is disabled,
added by this theme.
File
core/themes/olivero/templates/text-format-wrapper.html.twigView source
- {#
- /**
- * @file
- * Theme override for a text format-enabled form element.
- *
- * @todo Remove when https://www.drupal.org/node/3016346 and
- * https://www.drupal.org/node/3016343 are fixed.
- *
- * 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.
- * - description_attributes: attributes for the description.
- * @see https://www.drupal.org/node/3016343
- * - disabled: An indicator for whether the associated form element is disabled,
- * added by this theme.
- * @see https://www.drupal.org/node/3016346
- *
- * @see template_preprocess_text_format_wrapper()
- */
- #}
- {%
- set classes = [
- 'js-form-item',
- 'form-item',
- ]
- %}
-
- {{ attach_library('olivero/filter.theme') }}
-
- <div{{ attributes.addClass(classes) }}>
- {{ children }}
- {% if description %}
- {%
- set description_classes = [
- aria_description ? 'form-item__description',
- disabled ? 'is-disabled',
- ]
- %}
- <div{{ description_attributes.addClass(description_classes) }}>{{ description }}</div>
- {% endif %}
- </div>