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

Render all of the fields for a given style and store them on the object.

Parameters

$result: The result array from $view->result.

File

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

Class

views_plugin_style
Base class to define a style plugin handler.

Code

function render_fields($result) {
  if (!$this->uses_fields()) {
    return;
  }

  if (!isset($this->rendered_fields)) {
    $this->rendered_fields = array();
    $this->view->row_index = 0;
    $keys = array_keys($this->view->field);

    // If all fields have a field::access FALSE, there might be no fields; so
    // there is no reason to execute this code.
    if (!empty($keys)) {
      foreach ($result as $count => $row) {
        $this->view->row_index = $count;
        foreach ($keys as $id) {
          $this->rendered_fields[$count][$id] = $this->view->field[$id]->theme($row);
        }

        $this->row_tokens[$count] = $this->view->field[$id]->get_render_tokens(array());
      }
    }
    unset($this->view->row_index);
  }

  return $this->rendered_fields;
}