function views_plugin_style_summary::render

3.x views_plugin_style_summary.inc views_plugin_style_summary::render()
2.x views_plugin_style_summary.inc views_plugin_style_summary::render()

Render the display in this style.

Overrides views_plugin_style::render

File

plugins/views_plugin_style_summary.inc, line 60
Contains the default summary style plugin, which displays items in an HTML list.

Class

views_plugin_style_summary
The default style plugin for summaries.

Code

function render() {
  $rows = array();
  foreach ($this->view->result as $row) {
    // @todo: Include separator as an option.
    $rows[] = $row;
  }
  return theme($this->theme_functions(), $this->view, $this->options, $rows);
}