You are here

function views_pdf_plugin_style_unformatted::render in Views PDF 7.3

Same name and namespace in other branches
  1. 6 views_pdf_plugin_style_unformatted.inc \views_pdf_plugin_style_unformatted::render()

Render the style.

Grouping is not supported, it will probably require overriding render_grouping() as well as render_grouping_sets() in order to get it to work properly.

Overrides views_plugin_style::render

See also

views_pdf_views_plugins()

File

./views_pdf_plugin_style_unformatted.inc, line 23
Unformatted PDF style

Class

views_pdf_plugin_style_unformatted
This class holds all the funtionality used for the unformatted style plugin.

Code

function render() {
  $this->view->row_index = 0;
  foreach ($this->view->result as $row) {
    $this->row_plugin
      ->render($row);
    $this->view->row_index++;
  }
}