You are here

function ViewsDataExportExporter::bof in Views data export 7.4

Write the start of the export file.

Parameters

$file_handle: A PHP file handle to the export file.

Overrides ViewsDataExportExporterInterface::bof

5 methods override ViewsDataExportExporter::bof()
ViewsDataExportExporterDelimited::bof in exporters/views_data_export_exporter_delimited.inc
Generate the BOF.
ViewsDataExportExporterDOC::bof in exporters/views_data_export_exporter_doc.inc
Write the start of the export file.
ViewsDataExportExporterExcelxlsx::bof in exporters/views_data_export_exporter_excel_xlsx.inc
Write the start of the export file.
ViewsDataExportExporterTXT::bof in exporters/views_data_export_exporter_txt.inc
Write the start of the export file.
ViewsDataExportExporterXML::bof in exporters/views_data_export_exporter_xml.inc
Write the start of the export file.

File

exporters/views_data_export_exporter.inc, line 61

Class

ViewsDataExportExporter
Base class defining the common methods available to exporters.

Code

function bof(&$file_handle) {
}