{# /** * @file * Theme override 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. * * @see template_preprocess_fieldset() */ #} {% set removeClasses = [ 'required', ] %} {% set addClasses = [ 'fieldset', required ? 'is-required', 'js-form-wrapper', ] %} {% if type == 'fieldset' %} {% set addClasses = addClasses|merge([ 'fieldset--default', ]) %} {% else %} {% set removeClasses = removeClasses|merge([ 'fieldgroup', 'form-composite', 'js-form-wrapper', ]) %} {% set addClasses = addClasses|merge([ 'fieldset--' ~ type|clean_class, ]) %} {% endif %} {% set legend_span_classes = [ 'fieldset__legend-text', required ? 'is-required', required ? 'js-form-required', ] %} {# Always wrap fieldset legends in a for CSS positioning. #} {{ legend.title }} {% if required %} {{ 'This field is required.'|t }} {% endif %}
{% if errors %}
{{ errors }}
{% endif %} {% if prefix %} {{ prefix }} {% endif %} {{ children }} {% if suffix %} {{ suffix }} {% endif %} {% if description.content %} {{ description.content }}
{% endif %}