You are here

function ViewsDataExportExporter::eof in Views data export 7.4

Write the end of the export file.

Parameters

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

Overrides ViewsDataExportExporterInterface::eof

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

File

exporters/views_data_export_exporter.inc, line 70

Class

ViewsDataExportExporter
Base class defining the common methods available to exporters.

Code

function eof(&$file_handle, $row_count, $col_count) {
}