views-ui-display-tab-setting.html.twig

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

Theme override 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/themes/stable/templates/admin/views-ui-display-tab-setting.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override 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. #}
  19. {%
  20. set classes = [
  21. 'views-display-setting',
  22. 'clearfix',
  23. 'views-ui-display-tab-setting',
  24. defaulted ? 'defaulted',
  25. overridden ? 'overridden',
  26. ]
  27. %}
  28. <div{{ attributes.addClass(classes) }}>
  29. {% if description -%}
  30. <span class="label">{{ description }}</span>
  31. {%- endif %}
  32. {% if settings_links %}
  33. {{ settings_links|safe_join('<span class="label">&nbsp;|&nbsp;</span>') }}
  34. {% endif %}
  35. </div>

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