status-report-grouped.html.twig

Same filename in this branch
  1. 10 core/themes/claro/templates/status-report-grouped.html.twig
  2. 10 core/modules/system/templates/status-report-grouped.html.twig
Same filename and directory in other branches
  1. 9 core/themes/stable9/templates/admin/status-report-grouped.html.twig
  2. 9 core/themes/seven/templates/status-report-grouped.html.twig
  3. 9 core/themes/claro/templates/status-report-grouped.html.twig
  4. 9 core/themes/stable/templates/admin/status-report-grouped.html.twig
  5. 9 core/modules/system/templates/status-report-grouped.html.twig
  6. 8.9.x core/themes/seven/templates/status-report-grouped.html.twig
  7. 8.9.x core/themes/claro/templates/status-report-grouped.html.twig
  8. 8.9.x core/themes/stable/templates/admin/status-report-grouped.html.twig
  9. 8.9.x core/modules/system/templates/status-report-grouped.html.twig
  10. 11.x core/themes/stable9/templates/admin/status-report-grouped.html.twig
  11. 11.x core/themes/claro/templates/status-report-grouped.html.twig
  12. 11.x core/modules/system/templates/status-report-grouped.html.twig

Theme override of grouped status report requirements.

  • grouped_requirements: Contains grouped requirements. Each group contains:

    • title: The title of the group.
    • type: The severity of the group.
    • items: The requirement instances. Each requirement item contains:

      • title: The title of the requirement.
      • value: (optional) The requirement's status.
      • description: (optional) The requirement's description.
      • severity_title: The title of the severity.
      • severity_status: Indicates the severity status.
1 theme call to status-report-grouped.html.twig
StatusReport::getInfo in core/lib/Drupal/Core/Render/Element/StatusReport.php
Returns the element properties for this element.

File

core/themes/stable9/templates/admin/status-report-grouped.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override of grouped status report requirements.
  5. *
  6. * - grouped_requirements: Contains grouped requirements.
  7. * Each group contains:
  8. * - title: The title of the group.
  9. * - type: The severity of the group.
  10. * - items: The requirement instances.
  11. * Each requirement item contains:
  12. * - title: The title of the requirement.
  13. * - value: (optional) The requirement's status.
  14. * - description: (optional) The requirement's description.
  15. * - severity_title: The title of the severity.
  16. * - severity_status: Indicates the severity status.
  17. */
  18. #}
  19. {{ attach_library('core/drupal.collapse') }}
  20. <div>
  21. {% for group in grouped_requirements %}
  22. <div>
  23. <h3 id="{{ group.type }}">{{ group.title }}</h3>
  24. {% for requirement in group.items %}
  25. <details class="system-status-report__entry" open>
  26. {%
  27. set summary_classes = [
  28. 'system-status-report__status-title',
  29. group.type in ['warning', 'error'] ? 'system-status-report__status-icon system-status-report__status-icon--' ~ group.type
  30. ]
  31. %}
  32. <summary{{ create_attribute({'class': summary_classes}) }} role="button">
  33. {% if requirement.severity_title %}
  34. <span class="visually-hidden">{{ requirement.severity_title }}</span>
  35. {% endif %}
  36. {{ requirement.title }}
  37. </summary>
  38. <div class="system-status-report__entry__value">
  39. {{ requirement.value }}
  40. {% if requirement.description %}
  41. <div class="description">{{ requirement.description }}</div>
  42. {% endif %}
  43. </div>
  44. </details>
  45. {% endfor %}
  46. </div>
  47. {% endfor %}
  48. </div>

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.