Chris@0: {# Chris@0: /** Chris@0: * @file Chris@0: * Theme override for a fieldset element and its children. Chris@0: * Chris@0: * Available variables: Chris@0: * - attributes: HTML attributes for the fieldset element. Chris@0: * - errors: (optional) Any errors for this fieldset element, may not be set. Chris@0: * - required: Boolean indicating whether the fieldeset element is required. Chris@0: * - legend: The legend element containing the following properties: Chris@0: * - title: Title of the fieldset, intended for use as the text of the legend. Chris@0: * - attributes: HTML attributes to apply to the legend. Chris@0: * - description: The description element containing the following properties: Chris@0: * - content: The description content of the fieldset. Chris@0: * - attributes: HTML attributes to apply to the description container. Chris@0: * - children: The rendered child elements of the fieldset. Chris@0: * - prefix: The content to add before the fieldset children. Chris@0: * - suffix: The content to add after the fieldset children. Chris@0: * Chris@0: * @see template_preprocess_fieldset() Chris@0: */ Chris@0: #} Chris@0: {% Chris@0: set classes = [ Chris@0: 'js-form-item', Chris@0: 'form-item', Chris@0: 'js-form-wrapper', Chris@0: 'form-wrapper', Chris@0: ] Chris@0: %} Chris@0: