You are here

public function webform_exporter::__construct in Webform 7.4

Constructor for webform_exporter classes.

Parameters

$options: The array of export options as provided by the user-interface.

1 call to webform_exporter::__construct()
webform_exporter_delimited::__construct in includes/exporters/webform_exporter_delimited.inc
Constructor for webform_exporter classes.
1 method overrides webform_exporter::__construct()
webform_exporter_delimited::__construct in includes/exporters/webform_exporter_delimited.inc
Constructor for webform_exporter classes.

File

includes/exporters/webform_exporter.inc, line 16

Class

webform_exporter
Base class defining the common methods available to exporters.

Code

public function __construct($options) {
  $this->options = $options;
  $this->export_wordwrap = webform_variable_get('webform_export_wordwrap');
}