You are here

function ViewsDataExportExporterDOC::__construct in Views data export 7.4

Constructor for views_data_export_exporter classes.

Parameters

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

Overrides ViewsDataExportExporter::__construct

File

exporters/views_data_export_exporter_doc.inc, line 17

Class

ViewsDataExportExporterDOC
This exporter creates a DOC file readable by Microsoft Word. The content is an HTML table, as used by the old XLS export mechanism.

Code

function __construct($options) {
  $this->options = $options;
  parent::__construct($options);
}