admin-block-content.html.twig

Same filename in this branch
  1. 11.x core/themes/stable9/templates/admin/admin-block-content.html.twig
  2. 11.x core/themes/claro/templates/admin/admin-block-content.html.twig
  3. 11.x core/modules/system/templates/admin-block-content.html.twig
Same filename and directory in other branches
  1. 10 core/themes/stable9/templates/admin/admin-block-content.html.twig
  2. 10 core/themes/claro/templates/admin/admin-block-content.html.twig
  3. 10 core/modules/system/templates/admin-block-content.html.twig
  4. 9 core/themes/stable9/templates/admin/admin-block-content.html.twig
  5. 9 core/themes/seven/templates/admin-block-content.html.twig
  6. 9 core/themes/claro/templates/admin/admin-block-content.html.twig
  7. 9 core/themes/stable/templates/admin/admin-block-content.html.twig
  8. 9 core/modules/system/templates/admin-block-content.html.twig
  9. 8.9.x core/themes/seven/templates/admin-block-content.html.twig
  10. 8.9.x core/themes/claro/templates/admin/admin-block-content.html.twig
  11. 8.9.x core/themes/stable/templates/admin/admin-block-content.html.twig
  12. 8.9.x core/modules/system/templates/admin-block-content.html.twig
  13. main core/themes/stable9/templates/admin/admin-block-content.html.twig
  14. main core/themes/claro/templates/admin/admin-block-content.html.twig
  15. main core/modules/system/templates/admin-block-content.html.twig
  16. main core/themes/admin/templates/admin/admin-block-content.html.twig

Admin theme implementation for the content of an administrative block.

Available variables:

  • content: List of administrative menu items. Each menu item contains:

    • link: Link to the admin section.
    • title: Short name of the section.
    • description: Description of the administrative menu item.
  • attributes: HTML attributes to be added to the element.
  • compact: Boolean indicating whether compact mode is turned on or not.

See also

template_preprocess_admin_block_content()

gin_preprocess_admin_block_content()

5 theme calls to admin-block-content.html.twig
EntityDisplayModeController::formModeTypeSelection in core/modules/field_ui/src/Controller/EntityDisplayModeController.php
Provides a list of eligible entity types for adding form modes.
EntityDisplayModeController::viewModeTypeSelection in core/modules/field_ui/src/Controller/EntityDisplayModeController.php
Provides a list of eligible entity types for adding view modes.
SystemAdminThemePreprocess::preprocessSystemAdminIndex in core/modules/system/src/Theme/SystemAdminThemePreprocess.php
Prepares variables for admin index templates.
SystemController::overview in core/modules/system/src/Controller/SystemController.php
Provide the administration overview page.
SystemManager::getBlockContents in core/modules/system/src/SystemManager.php
Loads the contents of a menu block.

File

core/themes/admin/templates/admin/admin-block-content.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Admin theme implementation for the content of an administrative block.
  5. *
  6. * Available variables:
  7. * - content: List of administrative menu items. Each menu item contains:
  8. * - link: Link to the admin section.
  9. * - title: Short name of the section.
  10. * - description: Description of the administrative menu item.
  11. * - attributes: HTML attributes to be added to the element.
  12. * - compact: Boolean indicating whether compact mode is turned on or not.
  13. *
  14. * @see template_preprocess_admin_block_content()
  15. * @see gin_preprocess_admin_block_content()
  16. */
  17. #}
  18. {%
  19. set item_classes = [
  20. 'admin-item',
  21. ]
  22. %}
  23. {% if content %}
  24. <div{{ attributes.addClass('admin-list', 'gin-layer-wrapper') }}>
  25. {% for item in content %}
  26. {% set description_id = item.title|render|clean_id ~ '-desc' %}
  27. <div{{ create_attribute({class: item_classes}) }}>
  28. {{ item.link }}
  29. <div class="admin-item__title" aria-details="{{ description_id }}">{{ item.title }}</div>
  30. {% if item.description %}
  31. <div class="admin-item__description" id="{{ description_id }}">{{ item.description }}</div>
  32. {% endif %}
  33. </div>
  34. {% endfor %}
  35. </div>
  36. {% endif %}

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