You are here

function ViewsDataExportExporterInterface::add_row in Views data export 7.4

Add a single row to the export file.

Parameters

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

array $data: An array of formatted data for this row. One cell per item.

int $row_count: The current number of rows in the export file.

$field_titles:

1 method overrides ViewsDataExportExporterInterface::add_row()
ViewsDataExportExporter::add_row in exporters/views_data_export_exporter.inc
Add a single row to the export file.

File

exporters/ViewsDataExportExporterInterface.inc, line 28

Class

ViewsDataExportExporterInterface

Code

function add_row(&$file_handle, $data, $row_count, $field_titles);