1 views_plugin_style.inc views_plugin_style::pre_render($result)

Allow the style to do stuff before each row is rendered.

Parameters

$result: The full array of results from the query.

File

core/modules/views/plugins/views_plugin_style.inc, line 317
Definition of views_plugin_style.

Class

views_plugin_style
Base class to define a style plugin handler.

Code

function pre_render($result) {
  if (!empty($this->row_plugin)) {
    $this->row_plugin->pre_render($result);
  }
}