Automattic\WooCommerce\Admin

ReportCSVExporter::get_total_rows()publicWC 1.0

Get total number of rows in export.

Метод класса: ReportCSVExporter{}

Хуков нет.

Возвращает

int. Number of rows to export.

Использование

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

Код ReportCSVExporter::get_total_rows() WC 8.7.0

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