You are here

function template_preprocess_views_data_export in Views data export 7.4

Same name and namespace in other branches
  1. 6.3 theme/views_data_export.theme.inc \template_preprocess_views_data_export()
  2. 6 theme/views_data_export.theme.inc \template_preprocess_views_data_export()
  3. 6.2 theme/views_data_export.theme.inc \template_preprocess_views_data_export()
  4. 7 theme/views_data_export.theme.inc \template_preprocess_views_data_export()
  5. 7.3 theme/views_data_export.theme.inc \template_preprocess_views_data_export()

File

theme/views_data_export.theme.inc, line 76
Theme related functions for processing our output style plugins.

Code

function template_preprocess_views_data_export(&$vars) {
  $vars['header'] = $vars['rows']['header'];
  $vars['body'] = $vars['rows']['body'];
  $vars['footer'] = $vars['rows']['footer'];
  $view = $vars['view'];
  $fields =& $view->field;
}