form-element.html.twig 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for a form element.
  5. *
  6. * Available variables:
  7. * - attributes: HTML attributes for the containing element.
  8. * - errors: (optional) Any errors for this form element, may not be set.
  9. * - prefix: (optional) The form element prefix, may not be set.
  10. * - suffix: (optional) The form element suffix, may not be set.
  11. * - required: The required marker, or empty if the associated form element is
  12. * not required.
  13. * - type: The type of the element.
  14. * - name: The name of the element.
  15. * - label: A rendered label element.
  16. * - label_display: Label display setting. It can have these values:
  17. * - before: The label is output before the element. This is the default.
  18. * The label includes the #title and the required marker, if #required.
  19. * - after: The label is output after the element. For example, this is used
  20. * for radio and checkbox #type elements. If the #title is empty but the
  21. * field is #required, the label will contain only the required marker.
  22. * - invisible: Labels are critical for screen readers to enable them to
  23. * properly navigate through forms but can be visually distracting. This
  24. * property hides the label for everyone except screen readers.
  25. * - attribute: Set the title attribute on the element to create a tooltip but
  26. * output no label element. This is supported only for checkboxes and radios
  27. * in \Drupal\Core\Render\Element\CompositeFormElementTrait::preRenderCompositeFormElement().
  28. * It is used where a visual label is not needed, such as a table of
  29. * checkboxes where the row and column provide the context. The tooltip will
  30. * include the title and required marker.
  31. * - description: (optional) A list of description properties containing:
  32. * - content: A description of the form element, may not be set.
  33. * - attributes: (optional) A list of HTML attributes to apply to the
  34. * description content wrapper. Will only be set when description is set.
  35. * - description_display: Description display setting. It can have these values:
  36. * - before: The description is output before the element.
  37. * - after: The description is output after the element. This is the default
  38. * value.
  39. * - invisible: The description is output after the element, hidden visually
  40. * but available to screen readers.
  41. * - disabled: True if the element is disabled.
  42. * - title_display: Title display setting.
  43. *
  44. * @see template_preprocess_form_element()
  45. *
  46. * @ingroup themeable
  47. */
  48. #}
  49. {%
  50. set classes = [
  51. 'js-form-item',
  52. 'form-item',
  53. 'js-form-type-' ~ type|clean_class,
  54. 'form-item-' ~ name|clean_class,
  55. 'js-form-item-' ~ name|clean_class,
  56. title_display not in ['after', 'before'] ? 'form-no-label',
  57. disabled == 'disabled' ? 'form-disabled',
  58. errors ? 'form-item--error',
  59. ]
  60. %}
  61. {%
  62. set description_classes = [
  63. 'description',
  64. description_display == 'invisible' ? 'visually-hidden',
  65. ]
  66. %}
  67. <div{{ attributes.addClass(classes) }}>
  68. {% if label_display in ['before', 'invisible'] %}
  69. {{ label }}
  70. {% endif %}
  71. {% if prefix is not empty %}
  72. <span class="field-prefix">{{ prefix }}</span>
  73. {% endif %}
  74. {% if description_display == 'before' and description.content %}
  75. <div{{ description.attributes }}>
  76. {{ description.content }}
  77. </div>
  78. {% endif %}
  79. {{ children }}
  80. {% if suffix is not empty %}
  81. <span class="field-suffix">{{ suffix }}</span>
  82. {% endif %}
  83. {% if label_display == 'after' %}
  84. {{ label }}
  85. {% endif %}
  86. {% if errors %}
  87. <div class="form-item--error-message">
  88. {{ errors }}
  89. </div>
  90. {% endif %}
  91. {% if description_display in ['after', 'invisible'] and description.content %}
  92. <div{{ description.attributes.addClass(description_classes) }}>
  93. {{ description.content }}
  94. </div>
  95. {% endif %}
  96. </div>