Automattic\WooCommerce\Internal\CLI\Migrator\Lib

ImportSession::count_all_imported_entitiespublicWC 1.0

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

Хуков нет.

Возвращает

null. Ничего (null).

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

$ImportSession = new ImportSession();
$ImportSession->count_all_imported_entities();

Код ImportSession::count_all_imported_entities() WC 10.8.1

public function count_all_imported_entities() {
	$counts = $this->count_imported_entities();

	return array_sum( array_column( $counts, 'imported' ) );
}