details.html.twig
Same filename in this branch
- 9 core/profiles/demo_umami/themes/umami/templates/classy/form/details.html.twig
- 9 core/themes/olivero/templates/form/details.html.twig
- 9 core/themes/stable9/templates/form/details.html.twig
- 9 core/themes/seven/templates/details.html.twig
- 9 core/themes/bartik/templates/classy/form/details.html.twig
- 9 core/themes/stable/templates/form/details.html.twig
- 9 core/themes/starterkit_theme/templates/form/details.html.twig
- 9 core/themes/classy/templates/form/details.html.twig
- 9 core/modules/system/templates/details.html.twig
Same filename in other branches
- 8.9.x core/profiles/demo_umami/themes/umami/templates/classy/form/details.html.twig
- 8.9.x core/themes/seven/templates/details.html.twig
- 8.9.x core/themes/claro/templates/details.html.twig
- 8.9.x core/themes/bartik/templates/classy/form/details.html.twig
- 8.9.x core/themes/stable/templates/form/details.html.twig
- 8.9.x core/themes/classy/templates/form/details.html.twig
- 8.9.x core/modules/system/templates/details.html.twig
- 10 core/profiles/demo_umami/themes/umami/templates/classy/form/details.html.twig
- 10 core/themes/olivero/templates/form/details.html.twig
- 10 core/themes/stable9/templates/form/details.html.twig
- 10 core/themes/claro/templates/details.html.twig
- 10 core/themes/starterkit_theme/templates/form/details.html.twig
- 10 core/modules/system/templates/details.html.twig
- 11.x core/profiles/demo_umami/themes/umami/templates/classy/form/details.html.twig
- 11.x core/themes/olivero/templates/form/details.html.twig
- 11.x core/themes/stable9/templates/form/details.html.twig
- 11.x core/themes/claro/templates/details.html.twig
- 11.x core/themes/starterkit_theme/templates/form/details.html.twig
- 11.x core/modules/system/templates/details.html.twig
Theme override 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.
- 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.
- disabled: whether the details is disabled.
See also
File
-
core/
themes/ claro/ templates/ details.html.twig
View source
- {#
- /**
- * @file
- * Theme override 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.
- * - 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.
- * - disabled: whether the details is disabled.
- *
- * @see template_preprocess_details()
- * @see claro_preprocess_details()
- */
- #}
- {#
- Prefix 'details' class to avoid collision with Modernizr.
-
- @todo Remove prefix after https://www.drupal.org/node/2981732 has been solved.
- #}
- {%
- set classes = [
- 'claro-details',
- accordion ? 'claro-details--accordion',
- accordion_item ? 'claro-details--accordion-item',
- element['#module_package_listing'] ? 'claro-details--package-listing',
- ]
- %}
- {%
- set content_wrapper_classes = [
- 'claro-details__wrapper',
- 'details-wrapper',
- accordion ? 'claro-details__wrapper--accordion',
- accordion_item ? 'claro-details__wrapper--accordion-item',
- element['#module_package_listing'] ? 'claro-details__wrapper--package-listing',
- ]
- %}
- {%
- set inner_wrapper_classes = [
- 'claro-details__content',
- accordion ? 'claro-details__content--accordion',
- accordion_item ? 'claro-details__content--accordion-item',
- element['#module_package_listing'] ? 'claro-details__content--package-listing',
- ]
- %}
- <details{{ attributes.addClass(classes) }}>
- {%- if title -%}
- {%
- set summary_classes = [
- 'claro-details__summary',
- required ? 'js-form-required',
- required ? 'form-required',
- accordion ? 'claro-details__summary--accordion',
- accordion_item ? 'claro-details__summary--accordion-item',
- element['#module_package_listing'] ? 'claro-details__summary--package-listing',
-
- ]
- %}
- <summary{{ summary_attributes.addClass(summary_classes) }}>
- {{- title -}}
- {%- if required -%}
- <span class="required-mark"></span>
- {%- endif -%}
- </summary>
- {%- endif -%}
- <div{{ content_attributes.addClass(content_wrapper_classes) }}>
- {% if accordion or accordion_item %}
- <div{{ create_attribute({class: inner_wrapper_classes}) }}>
- {% endif %}
-
- {% if errors %}
- <div class="form-item form-item--error-message">
- {{ errors }}
- </div>
- {% endif %}
- {%- if description -%}
- <div class="claro-details__description{{ disabled ? ' is-disabled' }}">{{ description }}</div>
- {%- endif -%}
- {%- if children -%}
- {{ children }}
- {%- endif -%}
- {%- if value -%}
- {{ value }}
- {%- endif -%}
-
- {% if accordion or accordion_item %}
- </div>
- {% endif %}
- </div>
- </details>
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.