You are here

fieldset.html.twig in Zircon Profile 8.0

Default theme implementation for a fieldset element and its children.

Available variables:

  • attributes: HTML attributes for the fieldset element.
  • errors: (optional) Any errors for this fieldset element, may not be set.
  • required: Boolean indicating whether the fieldeset element is required.
  • legend: The legend element containing the following properties:
    • title: Title of the fieldset, intended for use as the text of the legend.
    • attributes: HTML attributes to apply to the legend.
  • description: The description element containing the following properties:
    • content: The description content of the fieldset.
    • attributes: HTML attributes to apply to the description container.
  • children: The rendered child elements of the fieldset.
  • prefix: The content to add before the fieldset children.
  • suffix: The content to add after the fieldset children.

File

core/modules/system/templates/fieldset.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for a fieldset element and its children.
  5. *
  6. * Available variables:
  7. * - attributes: HTML attributes for the fieldset element.
  8. * - errors: (optional) Any errors for this fieldset element, may not be set.
  9. * - required: Boolean indicating whether the fieldeset element is required.
  10. * - legend: The legend element containing the following properties:
  11. * - title: Title of the fieldset, intended for use as the text of the legend.
  12. * - attributes: HTML attributes to apply to the legend.
  13. * - description: The description element containing the following properties:
  14. * - content: The description content of the fieldset.
  15. * - attributes: HTML attributes to apply to the description container.
  16. * - children: The rendered child elements of the fieldset.
  17. * - prefix: The content to add before the fieldset children.
  18. * - suffix: The content to add after the fieldset children.
  19. *
  20. * @see template_preprocess_fieldset()
  21. *
  22. * @ingroup themeable
  23. */
  24. #}
  25. {%
  26. set classes = [
  27. 'js-form-item',
  28. 'form-item',
  29. 'js-form-wrapper',
  30. 'form-wrapper',
  31. ]
  32. %}
  33. <fieldset{{ attributes.addClass(classes) }}>
  34. {%
  35. set legend_span_classes = [
  36. 'fieldset-legend',
  37. required ? 'js-form-required',
  38. required ? 'form-required',
  39. ]
  40. %}
  41. {# Always wrap fieldset legends in a SPAN for CSS positioning. #}
  42. <legend{{ legend.attributes }}>
  43. <span{{ legend_span.attributes.addClass(legend_span_classes) }}>{{ legend.title }}</span>
  44. </legend>
  45. <div class="fieldset-wrapper">
  46. {% if errors %}
  47. <div>
  48. {{ errors }}
  49. </div>
  50. {% endif %}
  51. {% if prefix %}
  52. <span class="field-prefix">{{ prefix }}</span>
  53. {% endif %}
  54. {{ children }}
  55. {% if suffix %}
  56. <span class="field-suffix">{{ suffix }}</span>
  57. {% endif %}
  58. {% if description.content %}
  59. <div{{ description.attributes.addClass('description') }}>{{ description.content }}</div>
  60. {% endif %}
  61. </div>
  62. </fieldset>

Related topics