public function FeedsCrawlerBase::clear in Feeds Crawler 7.2
File
- src/
FeedsCrawlerBase.php, line 65 - Contains FeedsCrawler.
Class
- FeedsCrawlerBase
- The fetcher class that implements crawling.
Code
public function clear(FeedsSource $source) {
parent::clear($source);
$source_config = $source
->getConfigFor($this);
$source_config['crawled'] = FALSE;
$source
->setConfigFor($this, $source_config);
}