forked from a64f7bb4-7358-4778-9fbe-3b882c34cc1d/v1
14 lines
347 B
Twig
14 lines
347 B
Twig
{#
|
|
/**
|
|
* @file
|
|
* Theme override for a 'radios' #type form element.
|
|
*
|
|
* Available variables
|
|
* - attributes: A list of HTML attributes for the wrapper element.
|
|
* - children: The rendered radios.
|
|
*
|
|
* @see template_preprocess_radios()
|
|
*/
|
|
#}
|
|
<div{{ glb_classes(attributes.addClass('form-radios', 'form-boolean-group')) }}>{{ children }}</div>
|