Same filename in this branch
  1. 10 core/modules/views_ui/templates/views-ui-display-tab-setting.html.twig
  2. 10 core/themes/claro/templates/views/views-ui-display-tab-setting.html.twig
  3. 10 core/themes/stable9/templates/admin/views-ui-display-tab-setting.html.twig
Same filename and directory in other branches
  1. 8.9.x core/modules/views_ui/templates/views-ui-display-tab-setting.html.twig
  2. 9 core/modules/views_ui/templates/views-ui-display-tab-setting.html.twig

Default theme implementation for Views UI display tab settings.

Template for each row inside the "boxes" on the display query edit screen.

Available variables:

  • attributes: HTML attributes such as class for the container.
  • description: The description or label for this setting.
  • settings_links: A list of links for this setting.
  • defaulted: A boolean indicating the setting is in its default state.
  • overridden: A boolean indicating the setting has been overridden from the default.

See also

template_preprocess_views_ui_display_tab_setting()

2 theme calls to views-ui-display-tab-setting.html.twig
ViewEditForm::getDisplayDetails in core/modules/views_ui/src/ViewEditForm.php
Helper function to get the display details section of the edit UI.
ViewEditForm::getFormBucket in core/modules/views_ui/src/ViewEditForm.php
Add information about a section to a display.

File

core/modules/views_ui/templates/views-ui-display-tab-setting.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for Views UI display tab settings.
  5. *
  6. * Template for each row inside the "boxes" on the display query edit screen.
  7. *
  8. * Available variables:
  9. * - attributes: HTML attributes such as class for the container.
  10. * - description: The description or label for this setting.
  11. * - settings_links: A list of links for this setting.
  12. * - defaulted: A boolean indicating the setting is in its default state.
  13. * - overridden: A boolean indicating the setting has been overridden from the
  14. * default.
  15. *
  16. * @see template_preprocess_views_ui_display_tab_setting()
  17. *
  18. * @ingroup themeable
  19. */
  20. #}
  21. {%
  22. set classes = [
  23. 'views-display-setting',
  24. 'clearfix',
  25. 'views-ui-display-tab-setting',
  26. defaulted ? 'defaulted',
  27. overridden ? 'overridden',
  28. ]
  29. %}
  30. <div{{ attributes.addClass(classes) }}>
  31. {% if description -%}
  32. <span class="label">{{ description }}</span>
  33. {%- endif %}
  34. {% if settings_links %}
  35. {{ settings_links|safe_join('<span class="label">&nbsp;|&nbsp;</span>') }}
  36. {% endif %}
  37. </div>

Related topics