Automattic\WooCommerce\Internal\CLI\Migrator\Lib
ImportSession::count_all_imported_entities
Метод класса: ImportSession{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$ImportSession = new ImportSession(); $ImportSession->count_all_imported_entities();
Код 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' ) );
}