You are here

function ViewsDataExportExporterTXT::__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_txt.inc, line 10

Class

ViewsDataExportExporterTXT
Exporter for creating TXT files.

Code

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