function template_preprocess_views_view_grouping

template_preprocess_views_view_grouping(&$variables)

Prepares variables for views single grouping templates.

Default template: views-view-grouping.html.twig.

Parameters

array $variables: An associative array containing:

  • view: The view object.
  • rows: The rows returned from the view.
  • grouping_level: Integer indicating the hierarchical level of the grouping.
  • content: The content to be grouped.
  • title: The group heading.

File

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

Code

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

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!modules!views!views.theme.inc/function/template_preprocess_views_view_grouping/8.1.x