You are here

function views_data_export_plugin_style_export::render in Views data export 6

Same name and namespace in other branches
  1. 6.3 plugins/views_data_export_plugin_style_export.inc \views_data_export_plugin_style_export::render()
  2. 6.2 plugins/views_data_export_plugin_style_export.inc \views_data_export_plugin_style_export::render()
  3. 7.4 plugins/views_data_export_plugin_style_export.inc \views_data_export_plugin_style_export::render()
  4. 7 plugins/views_data_export_plugin_style_export.inc \views_data_export_plugin_style_export::render()
  5. 7.3 plugins/views_data_export_plugin_style_export.inc \views_data_export_plugin_style_export::render()

Render the display in this style.

File

plugins/views_data_export_plugin_style_export.inc, line 153
Plugin include file for export style plugin.

Class

views_data_export_plugin_style_export
Generalized style plugin for export plugins.

Code

function render() {
  if ($this
    ->uses_row_plugin() && empty($this->row_plugin)) {
    vpr('views_plugin_style_default: Missing row plugin');
    return;
  }
  $output = '';
  $rows['header'] = $this
    ->render_header();
  $rows['body'] = $this
    ->render_body();
  $rows['footer'] = $this
    ->render_footer();
  $output .= theme($this
    ->theme_functions(), $this->view, $this->options, $rows, $title);
  return $output;
}