You are here

function template_preprocess_bef_radios in Better Exposed Filters 8.3

Same name and namespace in other branches
  1. 8.5 includes/better_exposed_filters.theme.inc \template_preprocess_bef_radios()
  2. 8.4 includes/better_exposed_filters.theme.inc \template_preprocess_bef_radios()

File

./better_exposed_filters.module, line 104
Allows the use of checkboxes, radio buttons or hidden fields for exposed Views filters.

Code

function template_preprocess_bef_radios(&$variables) {
  $variables['children'] = Element::children($variables['element']);
  _bef_preprocess_nested_elements($variables);
}