You are here

function ViewsDataExportExporterExcelxlsx::__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_excel_xlsx.inc, line 16

Class

ViewsDataExportExporterExcelxlsx
This exporter creates an XLSX file readable by newer versions of Excel.

Code

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