You are here

function webform_preprocess_checkboxes in Webform 6.x

Same name and namespace in other branches
  1. 8.5 includes/webform.theme.inc \webform_preprocess_checkboxes()

Implements hook_preprocess_checkboxes() for checkboxes templates.

See also

\Drupal\webform\Plugin\WebformElement\OptionsBase

File

includes/webform.theme.inc, line 274
Theme hooks, preprocessor, and suggestions.

Code

function webform_preprocess_checkboxes(&$variables) {
  if (!WebformElementHelper::isWebformElement($variables['element'])) {
    return;
  }
  _webform_preprocess_options($variables);
}