Issue #2152201 by Salah Messaoud, Manuel Garcia, steveoliver, joelpittet, burgerboydaddy, katy5289, hussainweb, shanethehat, jenlampton, kpa, AnythonyR, EVIIILJ, kgoel, Cottser, dsdeiz, hanpersand: Convert theme_checkboxes() to Twig
2014-04-16 03:52:59 +00:00
|
|
|
{#
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* 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 template_preprocess_checkboxes()
|
|
|
|
*
|
|
|
|
* @ingroup themeable
|
|
|
|
*/
|
2015-05-18 21:08:10 +00:00
|
|
|
@todo: remove this file once https://www.drupal.org/node/1819284 is resolved.
|
Issue #2152201 by Salah Messaoud, Manuel Garcia, steveoliver, joelpittet, burgerboydaddy, katy5289, hussainweb, shanethehat, jenlampton, kpa, AnythonyR, EVIIILJ, kgoel, Cottser, dsdeiz, hanpersand: Convert theme_checkboxes() to Twig
2014-04-16 03:52:59 +00:00
|
|
|
This is identical to core/modules/system/templates/container.html.twig
|
|
|
|
#}
|
2014-10-08 10:52:46 +00:00
|
|
|
<div{{ attributes.addClass('form-checkboxes') }}>{{ children }}</div>
|