function StylePluginBase::render

Render the display in this style.

4 methods override StylePluginBase::render()
DefaultSummary::render in drupal/core/modules/views/lib/Drupal/views/Plugin/views/style/DefaultSummary.php
Render the display in this style.
Mapping::render in drupal/core/modules/views/lib/Drupal/views/Plugin/views/style/Mapping.php
Overrides Drupal\views\Plugin\views\style\StylePluginBase::render().
Rss::render in drupal/core/modules/views/lib/Drupal/views/Plugin/views/style/Rss.php
Render the display in this style.
StyleTest::render in drupal/core/modules/views/tests/views_test_data/lib/Drupal/views_test_data/Plugin/views/style/StyleTest.php
Overrides Drupal\views\Plugin\views\style\StylePluginBase::render()

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/style/StylePluginBase.php, line 403
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

function render() {
  if ($this
    ->usesRowPlugin() && empty($this->row_plugin)) {
    debug('Drupal\\views\\Plugin\\views\\style\\StylePluginBase: Missing row plugin');
    return;
  }

  // Group the rows according to the grouping instructions, if specified.
  $sets = $this
    ->render_grouping($this->view->result, $this->options['grouping'], TRUE);
  return $this
    ->render_grouping_sets($sets);
}