protected function StylePluginBase::renderRowGroup

Renders a group of rows of the grouped view.

Parameters

array $rows: The result rows rendered in this group.

Return value

array The render array containing the single group theme output.

1 call to StylePluginBase::renderRowGroup()

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/style/StylePluginBase.php, line 417
Definition of Drupal\views\Plugin\views\style\StylePluginBase.

Class

StylePluginBase
Base class to define a style plugin handler.

Namespace

Drupal\views\Plugin\views\style

Code

protected function renderRowGroup(array $rows = array()) {
  return array(
    '#theme' => $this
      ->themeFunctions(),
    '#view' => $this->view,
    '#rows' => $rows,
  );
}