You are here

block--bootstrap--modal.html.twig in Block Styles 2.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.
    • button_text: The configured label for the block trigger.
    • provider: The module or other provider that provided this block plugin.
    • 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.

File

modules/block_styles_bootstrap/templates/bootstrap_modal/block--bootstrap--modal.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. * - button_text: The configured label for the block trigger.
  13. * - provider: The module or other provider that provided this block plugin.
  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. #}
  33. {{ attach_library('block_styles_bootstrap/block_bootstrap_modal') }}
  34. {%
  35. set classes = [
  36. 'block',
  37. 'block-' ~ configuration.provider|clean_class,
  38. 'block-' ~ plugin_id|clean_class,
  39. 'block-bootstrap-modal',
  40. ]
  41. %}
  42. {%
  43. set modalid = 'modal-' ~ attributes.id
  44. %}
  45. <div{{ attributes.addClass(classes) }}>
  46. <button type="button" class="btn btn-primary btn-modal" data-toggle="modal" data-target="#{{ modalid }}">
  47. {{ configuration.button_text }}
  48. </button>
  49. <!-- Modal -->
  50. <div class="modal fade" id="{{ modalid }}" tabindex="-1" role="dialog" aria-labelledby="{{ label }}" aria-hidden="true">
  51. <div class="modal-dialog" role="document">
  52. <div class="modal-content">
  53. <div class="modal-header">
  54. <button type="button" class="close" data-dismiss="modal" aria-label="Close">
  55. <span aria-hidden="true">&times;</span>
  56. <span class="sr-only">{% trans %}Close{% endtrans %}</span>
  57. </button>
  58. {{ title_prefix }}
  59. {% if label %}
  60. <h4 {{ title_attributes.addClass('modal-title') }}class="modal-title">{{ label }}</h4>
  61. {% endif %}
  62. {{ title_suffix }}
  63. </div>
  64. <div{{ content_attributes.addClass('modal-body') }}>
  65. {{ content }}
  66. </div>
  67. <div class="modal-footer">
  68. <button type="button" class="btn btn-secondary" data-dismiss="modal">{% trans %}Close{% endtrans %}</button>
  69. </div>
  70. </div>
  71. </div>
  72. </div>
  73. </div>