block--primary-menu--plugin-id--search-form-block.html.twig

Same filename and directory in other branches
  1. 9 core/themes/olivero/templates/block/block--primary-menu--plugin-id--search-form-block.html.twig
  2. 10 core/themes/olivero/templates/block/block--primary-menu--plugin-id--search-form-block.html.twig

Olivero's theme implementation for a search form block in the Primary Menu region.

Available variables:

  • plugin_id: The ID of the block implementation.
  • label: The configured label of the block if visible.
  • configuration: A list of the block's configuration values, including:
    • label: The configured label for the block.
    • label_display: The display settings for the label.
    • provider: The module or other provider that provided this block plugin.
    • Block plugin specific settings will also be stored here.
  • in_preview: Whether the plugin is being rendered in preview mode.
  • content: The content of this block.
  • content_attributes: A list of HTML attributes applied to the main content
  • attributes: A list HTML attributes populated by modules, intended to be added to the main container tag of this template. Includes:

    • id: A valid HTML ID and guaranteed unique.
  • title_attributes: Same as attributes, except applied to the main title tag that appears in the template.
  • title_prefix: Additional output populated by modules, intended to be displayed in front of the main title tag that appears in the template.
  • title_suffix: Additional output populated by modules, intended to be displayed after the main title tag that appears in the template.

See also

template_preprocess_block()

search_preprocess_block()

File

core/themes/olivero/templates/block/block--primary-menu--plugin-id--search-form-block.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Olivero's theme implementation for a search form block in the Primary Menu region.
  5. *
  6. * Available variables:
  7. * - plugin_id: The ID of the block implementation.
  8. * - label: The configured label of the block if visible.
  9. * - configuration: A list of the block's configuration values, including:
  10. * - label: The configured label for the block.
  11. * - label_display: The display settings for the label.
  12. * - provider: The module or other provider that provided this block plugin.
  13. * - Block plugin specific settings will also be stored here.
  14. * - in_preview: Whether the plugin is being rendered in preview mode.
  15. * - content: The content of this block.
  16. * - content_attributes: A list of HTML attributes applied to the main content
  17. * - attributes: A list HTML attributes populated by modules, intended to
  18. * be added to the main container tag of this template. Includes:
  19. * - id: A valid HTML ID and guaranteed unique.
  20. * - title_attributes: Same as attributes, except applied to the main title
  21. * tag that appears in the template.
  22. * - title_prefix: Additional output populated by modules, intended to be
  23. * displayed in front of the main title tag that appears in the template.
  24. * - title_suffix: Additional output populated by modules, intended to be
  25. * displayed after the main title tag that appears in the template.
  26. *
  27. * @see template_preprocess_block()
  28. * @see search_preprocess_block()
  29. */
  30. #}
  31. {%
  32. set classes = [
  33. 'block',
  34. 'block-search-narrow',
  35. ]
  36. %}
  37. <div{{ attributes.addClass(classes) }}>
  38. {{ title_prefix }}
  39. {% if label %}
  40. <h2{{ title_attributes }}>{{ label }}</h2>
  41. {% endif %}
  42. {{ title_suffix }}
  43. {% block content %}
  44. <div{{ content_attributes.addClass('content') }}>
  45. {{ content }}
  46. </div>
  47. {% endblock %}
  48. </div>

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