You are here

public function FeedsClearBatch::__construct in Feeds 6

Same name and namespace in other branches
  1. 7 includes/FeedsBatch.inc \FeedsClearBatch::__construct()

Overrides FeedsBatch::__construct

File

includes/FeedsBatch.inc, line 356

Class

FeedsClearBatch
Batch class for batched deleting of items.

Code

public function __construct() {
  parent::__construct();
  $this->progress = array(
    FEEDS_CLEARING => FEEDS_BATCH_COMPLETE,
  );
  $this->total = array(
    FEEDS_CLEARING => 0,
  );
  $this->deleted = 0;
}