function template_preprocess_views_view_grouping

Process a single grouping within a view.

File

drupal/core/modules/views/theme/theme.inc, line 319
Preprocessors and helper functions to make theming easier.

Code

function template_preprocess_views_view_grouping(&$vars) {
  $vars['content'] = $vars['view']->style_plugin
    ->render_grouping_sets($vars['rows'], $vars['grouping_level']);
}