WC_CSV_Exporter::send_content()
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() WC CSV Exporter::send content code WC 9.4.2
public function send_content( $csv_data ) { echo $csv_data; // @codingStandardsIgnoreLine }