You are here

function views_data_export_plugin_style_export::render_footer in Views data export 6.3

Same name and namespace in other branches
  1. 6 plugins/views_data_export_plugin_style_export.inc \views_data_export_plugin_style_export::render_footer()
  2. 6.2 plugins/views_data_export_plugin_style_export.inc \views_data_export_plugin_style_export::render_footer()
  3. 7.4 plugins/views_data_export_plugin_style_export.inc \views_data_export_plugin_style_export::render_footer()
  4. 7 plugins/views_data_export_plugin_style_export.inc \views_data_export_plugin_style_export::render_footer()
  5. 7.3 plugins/views_data_export_plugin_style_export.inc \views_data_export_plugin_style_export::render_footer()
1 call to views_data_export_plugin_style_export::render_footer()
views_data_export_plugin_style_export::render in plugins/views_data_export_plugin_style_export.inc
Render the display in this style.

File

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

Class

views_data_export_plugin_style_export
Generalized style plugin for export plugins.

Code

function render_footer() {
  $rows = array();
  $output = theme($this
    ->theme_functions($this->definition['additional themes base'] . '_footer'), $this->view, $this->options, $rows, '');
  return $output;
}