You are here

public function webform_exporter_excel::__construct in Webform 7.3

Constructor.

Parameters

array $options: An associative array of options.

Overrides webform_exporter_delimited::__construct

1 call to webform_exporter_excel::__construct()
webform_exporter_excel::webform_exporter_excel in includes/webform.export.inc
PHP 4 constructor compatibility shim.

File

includes/webform.export.inc, line 209
Provides several different handlers for exporting webform results.

Class

webform_exporter_excel
The Excel exporter currently is just a tab-delimited export.

Code

public function __construct($options) {
  $options['delimiter'] = '\\t';
  parent::__construct($options);
}