You are here

public function TestFetcher::fetch in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/aggregator/tests/modules/aggregator_test/src/Plugin/aggregator/fetcher/TestFetcher.php \Drupal\aggregator_test\Plugin\aggregator\fetcher\TestFetcher::fetch()

Downloads feed data.

Parameters

\Drupal\aggregator\FeedInterface $feed: A feed object representing the resource to be downloaded. $feed->getUrl() contains the link to the feed. Download the data at the URL and expose it to other modules by attaching it to $feed->source_string.

Return value

bool TRUE if fetching was successful, FALSE otherwise.

Overrides DefaultFetcher::fetch

File

core/modules/aggregator/tests/modules/aggregator_test/src/Plugin/aggregator/fetcher/TestFetcher.php, line 30
Contains \Drupal\aggregator_test\Plugin\aggregator\fetcher\TestFetcher.

Class

TestFetcher
Defines a test fetcher implementation.

Namespace

Drupal\aggregator_test\Plugin\aggregator\fetcher

Code

public function fetch(FeedInterface $feed) {
  if ($feed
    ->label() == 'Do not fetch') {
    return FALSE;
  }
  return parent::fetch($feed);
}