You are here

public function FeedsState::__construct in Feeds 7.2

Constructor, initialize variables.

File

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

Class

FeedsState
Status of an import or clearing operation on a source.

Code

public function __construct() {
  $this->progress = FEEDS_BATCH_COMPLETE;
  $this->total = $this->created = $this->updated = $this->deleted = $this->unpublished = $this->blocked = $this->skipped = $this->failed = 0;
}