You are here

public function FeedsSource::progressParsing in Feeds 7.2

Report progress as float between 0 and 1. 1 = FEEDS_BATCH_COMPLETE.

2 calls to FeedsSource::progressParsing()
FeedsSource::import in includes/FeedsSource.inc
Import a source: execute fetching, parsing and processing stage.
FeedsSource::pushImport in includes/FeedsSource.inc
Imports a fetcher result all at once in memory.

File

includes/FeedsSource.inc, line 684
Definition of FeedsSourceInterface, FeedsState and FeedsSource class.

Class

FeedsSource
Holds the source of a feed to import.

Code

public function progressParsing() {
  return $this
    ->state(FEEDS_PARSE)->progress;
}