details.html.twig

Same filename in this branch
  1. main core/profiles/demo_umami/themes/umami/templates/classy/form/details.html.twig
  2. main core/themes/olivero/templates/form/details.html.twig
  3. main core/themes/stable9/templates/form/details.html.twig
  4. main core/themes/claro/templates/details.html.twig
  5. main core/themes/starterkit_theme/templates/form/details.html.twig
Same filename and directory in other branches
  1. 10 core/profiles/demo_umami/themes/umami/templates/classy/form/details.html.twig
  2. 10 core/themes/olivero/templates/form/details.html.twig
  3. 10 core/themes/stable9/templates/form/details.html.twig
  4. 10 core/themes/claro/templates/details.html.twig
  5. 10 core/themes/starterkit_theme/templates/form/details.html.twig
  6. 11.x core/profiles/demo_umami/themes/umami/templates/classy/form/details.html.twig
  7. 11.x core/themes/olivero/templates/form/details.html.twig
  8. 11.x core/themes/stable9/templates/form/details.html.twig
  9. 11.x core/themes/claro/templates/details.html.twig
  10. 11.x core/themes/starterkit_theme/templates/form/details.html.twig
  11. 11.x core/modules/system/templates/details.html.twig
  12. 10 core/modules/system/templates/details.html.twig
  13. 9 core/profiles/demo_umami/themes/umami/templates/classy/form/details.html.twig
  14. 9 core/themes/olivero/templates/form/details.html.twig
  15. 9 core/themes/stable9/templates/form/details.html.twig
  16. 9 core/themes/seven/templates/details.html.twig
  17. 9 core/themes/claro/templates/details.html.twig
  18. 9 core/themes/bartik/templates/classy/form/details.html.twig
  19. 9 core/themes/stable/templates/form/details.html.twig
  20. 9 core/themes/starterkit_theme/templates/form/details.html.twig
  21. 9 core/themes/classy/templates/form/details.html.twig
  22. 9 core/modules/system/templates/details.html.twig
  23. 8.9.x core/profiles/demo_umami/themes/umami/templates/classy/form/details.html.twig
  24. 8.9.x core/themes/seven/templates/details.html.twig
  25. 8.9.x core/themes/claro/templates/details.html.twig
  26. 8.9.x core/themes/bartik/templates/classy/form/details.html.twig
  27. 8.9.x core/themes/stable/templates/form/details.html.twig
  28. 8.9.x core/themes/classy/templates/form/details.html.twig
  29. 8.9.x core/modules/system/templates/details.html.twig

Default theme implementation for a details element.

Available variables

  • attributes: A list of HTML attributes for the details element.
  • errors: (optional) Any errors for this details element, may not be set.
  • title: (optional) The title of the element, may not be set.
  • summary_attributes: A list of HTML attributes for the summary element.
  • description: (optional) The description of the element, may not be set.
  • children: (optional) The children of the element, may not be set.
  • value: (optional) The value of the element, may not be set.

@see\Drupal\Core\Form\FormPreprocess::preprocessDetails()

File

core/modules/system/templates/details.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for a details element.
  5. *
  6. * Available variables
  7. * - attributes: A list of HTML attributes for the details element.
  8. * - errors: (optional) Any errors for this details element, may not be set.
  9. * - title: (optional) The title of the element, may not be set.
  10. * - summary_attributes: A list of HTML attributes for the summary element.
  11. * - description: (optional) The description of the element, may not be set.
  12. * - children: (optional) The children of the element, may not be set.
  13. * - value: (optional) The value of the element, may not be set.
  14. *
  15. * @see\Drupal\Core\Form\FormPreprocess::preprocessDetails()
  16. *
  17. * @ingroup themeable
  18. */
  19. #}
  20. <details{{ attributes }}>
  21. {%
  22. set summary_classes = [
  23. required ? 'js-form-required',
  24. required ? 'form-required',
  25. ]
  26. %}
  27. {%- if title -%}
  28. <summary{{ summary_attributes.addClass(summary_classes) }}>{{ title }}</summary>
  29. {%- endif -%}
  30. {% if errors %}
  31. <div>
  32. {{ errors }}
  33. </div>
  34. {% endif %}
  35. {%- if description -%}
  36. {% set description_attributes = create_attribute({id: attributes['aria-describedby']}) %}
  37. <div{{ description_attributes }}>{{ description }}</div>
  38. {%- endif -%}
  39. {{ children }}
  40. {{ value }}
  41. </details>

Related topics


Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.