You are here

public function webform_exporter::eof in Webform 7.4

Same name and namespace in other branches
  1. 5.2 webform_export.inc \webform_exporter::eof()
  2. 6.3 includes/webform.export.inc \webform_exporter::eof()
  3. 6.2 webform_export.inc \webform_exporter::eof()
  4. 7.3 includes/webform.export.inc \webform_exporter::eof()

Write the end of the export file.

Parameters

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

int $row_count:

int $col_count:

1 method overrides webform_exporter::eof()
webform_exporter_excel_xlsx::eof in includes/exporters/webform_exporter_excel_xlsx.inc
Output the BOF and end the file.

File

includes/exporters/webform_exporter.inc, line 101

Class

webform_exporter
Base class defining the common methods available to exporters.

Code

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