details--vertical-tabs.html.twig
Same filename in other branches
Theme override for a details element.
This variation is used for theming the details of a Vertical Tabs 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.
- 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.
- accordion: whether the details element should look as an accordion.
- accordion_item: whether the details element is an item of an accordion list.
See also
File
-
core/
themes/ claro/ templates/ navigation/ details--vertical-tabs.html.twig
View source
- {#
- /**
- * @file
- * Theme override for a details element.
- *
- * This variation is used for theming the details of a Vertical Tabs 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.
- * - 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.
- * - accordion: whether the details element should look as an accordion.
- * - accordion_item: whether the details element is an item of an accordion
- * list.
- *
- * @see template_preprocess_details()
- * @see claro_preprocess_details()
- */
- #}
- {%
- set classes = [
- 'claro-details',
- 'claro-details--vertical-tabs-item',
- ]
- %}
- {%
- set content_wrapper_classes = [
- 'claro-details__wrapper',
- 'details-wrapper',
- 'claro-details__wrapper--vertical-tabs-item',
- ]
- %}
- {%
- set inner_wrapper_classes = [
- 'claro-details__content',
- 'claro-details__content--vertical-tabs-item',
- ]
- %}
- <details{{ attributes.addClass(classes) }}>
- {%- if title -%}
- {%
- set summary_classes = [
- 'claro-details__summary',
- 'claro-details__summary--vertical-tabs-item',
- required ? 'js-form-required',
- required ? 'form-required',
- ]
- %}
- <summary{{ summary_attributes.addClass(summary_classes) }}>
- {{- title -}}
- </summary>
- {%- endif -%}
- <div{{ content_attributes.addClass(content_wrapper_classes) }}>
- <div{{ create_attribute({class: inner_wrapper_classes}) }}>
- {% if errors %}
- <div class="form-item form-item__error-message">
- {{ errors }}
- </div>
- {% endif %}
- {%- if description -%}
- <div class="claro-details__description">{{ description }}</div>
- {%- endif -%}
- {%- if children -%}
- {{ children }}
- {%- endif -%}
- {%- if value -%}
- {{ value }}
- {%- endif -%}
- </div>
- </div>
- </details>
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.