You are here

block--bootstrap--dropdown.html.twig in Block Styles 1.x

Default theme implementation to display a block.

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.
    • 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.
    • button_text: The configured label for the block trigger.
    • Block plugin specific settings will also be stored here.
  • content: The content of this block.
  • attributes: array of HTML attributes populated by modules, intended to be added to the main container tag of this template.

    • 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.
  • content_attributes: Same as attributes, except applied to the main content 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.

TODO prevenir que el dropdown se cierre en onclick

File

modules/block_styles_bootstrap/templates/bootstrap_dropdown/block--bootstrap--dropdown.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation to display a block.
  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.
  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. * - button_text: The configured label for the block trigger.
  14. * - Block plugin specific settings will also be stored here.
  15. * - content: The content of this block.
  16. * - attributes: array of HTML attributes populated by modules, intended to
  17. * be added to the main container tag of this template.
  18. * - id: A valid HTML ID and guaranteed unique.
  19. * - title_attributes: Same as attributes, except applied to the main title
  20. * tag that appears in the template.
  21. * - content_attributes: Same as attributes, except applied to the main content
  22. * tag that appears in the template.
  23. * - title_prefix: Additional output populated by modules, intended to be
  24. * displayed in front of the main title tag that appears in the template.
  25. * - title_suffix: Additional output populated by modules, intended to be
  26. * displayed after the main title tag that appears in the template.
  27. *
  28. * @see template_preprocess_block()
  29. *
  30. * @ingroup themeable
  31. *
  32. * TODO prevenir que el dropdown se cierre en onclick
  33. */
  34. #}
  35. {{ attach_library('block_styles_bootstrap/block_bootstrap_dropdown') }}
  36. {%
  37. set classes = [
  38. 'block',
  39. 'block-' ~ configuration.provider|clean_class,
  40. 'block-' ~ plugin_id|clean_class,
  41. 'block-bootstrap-dropdown',
  42. ]
  43. %}
  44. {%
  45. set dropdownid = 'drop-' ~ attributes.id
  46. %}
  47. <div{{ attributes.addClass(classes) }}>
  48. <button class="btn btn-secondary dropdown-toggle" type="button" id="{{ dropdownid }}" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
  49. {{ configuration.button_text }}
  50. </button>
  51. <div class="dropdown-menu" aria-labelledby="{{ dropdownid }}">
  52. {% block content %}
  53. {{ title_prefix }}
  54. {% if label %}
  55. <h2{{ title_attributes }}>{{ label }}</h2>
  56. {% endif %}
  57. {{ title_suffix }}
  58. <div{{ content_attributes.addClass('content') }}>
  59. {{ content }}
  60. </div>
  61. {% endblock %}
  62. </div>
  63. </div>