You are here

fieldset--media-library-widget.html.twig in Media Library Theme Reset 8

Theme override for the media library widget.

Available variables:

  • attributes: HTML attributes for the fieldset element.
  • errors: (optional) Any errors for this fieldset element, may not be set.
  • required: Boolean indicating whether the fieldeset element is required.
  • legend: The legend element containing the following properties:
    • title: Title of the fieldset, intended for use as the text of the legend.
    • attributes: HTML attributes to apply to the legend.
  • description: The description element containing the following properties:
    • content: The description content of the fieldset.
    • attributes: HTML attributes to apply to the description container.
  • children: The rendered child elements of the fieldset.
  • prefix: The content to add before the fieldset children.
  • suffix: The content to add after the fieldset children.

File

templates/fieldset--media-library-widget.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override for the media library widget.
  5. *
  6. * Available variables:
  7. * - attributes: HTML attributes for the fieldset element.
  8. * - errors: (optional) Any errors for this fieldset element, may not be set.
  9. * - required: Boolean indicating whether the fieldeset element is required.
  10. * - legend: The legend element containing the following properties:
  11. * - title: Title of the fieldset, intended for use as the text of the legend.
  12. * - attributes: HTML attributes to apply to the legend.
  13. * - description: The description element containing the following properties:
  14. * - content: The description content of the fieldset.
  15. * - attributes: HTML attributes to apply to the description container.
  16. * - children: The rendered child elements of the fieldset.
  17. * - prefix: The content to add before the fieldset children.
  18. * - suffix: The content to add after the fieldset children.
  19. *
  20. * @see seven_preprocess_fieldset__media_library_widget()
  21. * @see template_preprocess_fieldset()
  22. */
  23. #}
  24. {%
  25. set classes = [
  26. 'js-form-item',
  27. 'form-item',
  28. 'js-form-wrapper',
  29. 'form-wrapper',
  30. 'media-library-widget',
  31. ]
  32. %}
  33. <fieldset{{ attributes.addClass(classes) }}>
  34. {%
  35. set legend_span_classes = [
  36. 'fieldset-legend',
  37. 'form-item__label',
  38. required ? 'js-form-required',
  39. required ? 'form-required',
  40. ]
  41. %}
  42. {# Always wrap fieldset legends in a <span> for CSS positioning. #}
  43. <legend{{ legend.attributes }}>
  44. <span{{ legend_span.attributes.addClass(legend_span_classes) }}>{{ legend.title }}</span>
  45. </legend>
  46. <div class="fieldset-wrapper">
  47. {% if errors %}
  48. <div class="form-item--error-message">
  49. <strong>{{ errors }}</strong>
  50. </div>
  51. {% endif %}
  52. {% if prefix.empty_selection %}
  53. <p class="media-library-widget-empty-text">{{ prefix.empty_selection }}</p>
  54. {% elseif prefix.weight_toggle %}
  55. {{ prefix.weight_toggle }}
  56. {% endif %}
  57. {{ children }}
  58. {% if suffix %}
  59. <span class="field-suffix">{{ suffix }}</span>
  60. {% endif %}
  61. {% if description.content %}
  62. <div{{ description.attributes.addClass('description') }}>{{ description.content }}</div>
  63. {% endif %}
  64. </div>
  65. </fieldset>