You are here

class webform_exporter in Webform 6.2

Same name and namespace in other branches
  1. 5.2 webform_export.inc \webform_exporter
  2. 6.3 includes/webform.export.inc \webform_exporter
  3. 7.4 includes/exporters/webform_exporter.inc \webform_exporter
  4. 7.3 includes/webform.export.inc \webform_exporter

Hierarchy

Expanded class hierarchy of webform_exporter

File

./webform_export.inc, line 79
Provides several different handlers for exporting webform results.

View source
class webform_exporter {
  function add_row(&$file_handle, $data) {
  }
  function set_headers($filename) {
    drupal_set_header('Content-Type: application/force-download');
    drupal_set_header('Pragma: public');
    drupal_set_header('Cache-Control: max-age=0');
  }
  function bof(&$file_handle) {
  }
  function eof(&$file_handle) {
  }

}

Members