Same filename in this branch
  1. 10 core/modules/system/templates/field-multiple-value-form.html.twig
  2. 10 core/themes/claro/templates/form/field-multiple-value-form.html.twig
  3. 10 core/themes/olivero/templates/form/field-multiple-value-form.html.twig
  4. 10 core/themes/stable9/templates/form/field-multiple-value-form.html.twig
  5. 10 core/themes/starterkit_theme/templates/form/field-multiple-value-form.html.twig
Same filename and directory in other branches
  1. 8.9.x core/modules/system/templates/field-multiple-value-form.html.twig
  2. 9 core/modules/system/templates/field-multiple-value-form.html.twig

Default theme implementation for an individual form element.

Available variables for all fields:

  • multiple: Whether there are multiple instances of the field.

Available variables for single cardinality fields:

  • elements: Form elements to be rendered.

Available variables when there are multiple fields.

  • table: Table of field items.
  • description: The description element containing the following properties:
    • content: The description content of the form element.
    • attributes: HTML attributes to apply to the description container.
  • button: "Add another item" button.

See also

template_preprocess_field_multiple_value_form()

1 theme call to field-multiple-value-form.html.twig
WidgetBase::formMultipleElements in core/lib/Drupal/Core/Field/WidgetBase.php
Special handling to create form elements for multiple values.

File

core/modules/system/templates/field-multiple-value-form.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for an individual form element.
  5. *
  6. * Available variables for all fields:
  7. * - multiple: Whether there are multiple instances of the field.
  8. *
  9. * Available variables for single cardinality fields:
  10. * - elements: Form elements to be rendered.
  11. *
  12. * Available variables when there are multiple fields.
  13. * - table: Table of field items.
  14. * - description: The description element containing the following properties:
  15. * - content: The description content of the form element.
  16. * - attributes: HTML attributes to apply to the description container.
  17. * - button: "Add another item" button.
  18. *
  19. * @see template_preprocess_field_multiple_value_form()
  20. *
  21. * @ingroup themeable
  22. */
  23. #}
  24. {% if multiple %}
  25. {%
  26. set classes = [
  27. 'js-form-item',
  28. 'form-item'
  29. ]
  30. %}
  31. <div{{ attributes.addClass(classes) }}>
  32. {{ table }}
  33. {% if description.content %}
  34. <div{{ description.attributes.addClass('description') }} >{{ description.content }}</div>
  35. {% endif %}
  36. {% if button %}
  37. <div class="clearfix">{{ button }}</div>
  38. {% endif %}
  39. </div>
  40. {% else %}
  41. {% for element in elements %}
  42. {{ element }}
  43. {% endfor %}
  44. {% endif %}

Related topics