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

Default theme implementation for a 'checkboxes' #type form element.

Available variables

  • attributes: A list of HTML attributes for the wrapper element.
  • children: The rendered checkboxes.

See also

template_preprocess_checkboxes()

File

core/modules/system/templates/checkboxes.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for a 'checkboxes' #type form element.
  5. *
  6. * Available variables
  7. * - attributes: A list of HTML attributes for the wrapper element.
  8. * - children: The rendered checkboxes.
  9. *
  10. * @see template_preprocess_checkboxes()
  11. *
  12. * @ingroup themeable
  13. */
  14. @todo: remove this file once https://www.drupal.org/node/1819284 is resolved.
  15. This is identical to core/modules/system/templates/container.html.twig
  16. #}
  17. <div{{ attributes.addClass('form-checkboxes') }}>{{ children }}</div>

Related topics