You are here

public function FeedsImportBatch::getItemCount in Feeds 7

Same name and namespace in other branches
  1. 6 includes/FeedsBatch.inc \FeedsImportBatch::getItemCount()

Get number of items.

File

includes/FeedsBatch.inc, line 312

Class

FeedsImportBatch
A FeedsImportBatch wraps the actual content retrieved from a FeedsSource. On import, it is created on the fetching stage and passed through the parsing and processing stage where it is normalized and consumed.

Code

public function getItemCount() {
  return count($this->items);
}