WC_CSV_Exporter::send_content()publicWC 3.1.0

Set the export content.

Method of the class: WC_CSV_Exporter{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_CSV_Exporter = new WC_CSV_Exporter();
$WC_CSV_Exporter->send_content( $csv_data );
$csv_data(string) (required)
All CSV content.

Changelog

Since 3.1.0 Introduced.

WC_CSV_Exporter::send_content() code WC 8.7.0

public function send_content( $csv_data ) {
	echo $csv_data; // @codingStandardsIgnoreLine
}