WC_CSV_Exporter::get_total_exported()publicWC 3.1.0

Get count of records exported.

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

Хуков нет.

Возвращает

int.

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

$WC_CSV_Exporter = new WC_CSV_Exporter();
$WC_CSV_Exporter->get_total_exported();

Список изменений

С версии 3.1.0 Введена.

Код WC_CSV_Exporter::get_total_exported() WC 8.7.0

public function get_total_exported() {
	return $this->exported_row_count;
}