Automattic\WooCommerce\Admin

ReportCSVExporter::get_total_rows()publicWC 1.0

Get total number of rows in export.

Method of the class: ReportCSVExporter{}

No Hooks.

Return

Int. Number of rows to export.

Usage

$ReportCSVExporter = new ReportCSVExporter();
$ReportCSVExporter->get_total_rows();

ReportCSVExporter::get_total_rows() code WC 8.7.0

public function get_total_rows() {
	return $this->total_rows;
}