You are here

function ViewsDataExportExporter::post_process in Views data export 7.4

Allow final processing of the results.

Parameters

$results: An array of result data, including:

  • file_name: The full file path of the generated file.
  • row_count: The final number of rows in the generated file.

Overrides ViewsDataExportExporterInterface::post_process

4 methods override ViewsDataExportExporter::post_process()
ViewsDataExportExporterDOC::post_process in exporters/views_data_export_exporter_doc.inc
Allow final processing of the results.
ViewsDataExportExporterExcelxlsx::post_process in exporters/views_data_export_exporter_excel_xlsx.inc
Allow final processing of the results.
ViewsDataExportExporterTXT::post_process in exporters/views_data_export_exporter_txt.inc
Allow final processing of the results.
ViewsDataExportExporterXML::post_process in exporters/views_data_export_exporter_xml.inc
Allow final processing of the results.

File

exporters/views_data_export_exporter.inc, line 81

Class

ViewsDataExportExporter
Base class defining the common methods available to exporters.

Code

function post_process(&$results) {
}