function TestProcessor::postProcess

Same name and namespace in other branches
  1. 8.9.x core/modules/aggregator/tests/modules/aggregator_test/src/Plugin/aggregator/processor/TestProcessor.php \Drupal\aggregator_test\Plugin\aggregator\processor\TestProcessor::postProcess()

Refreshes feed information.

Called after the processing of the feed is completed by all selected processors.

Parameters

\Drupal\aggregator\FeedInterface $feed: Object describing feed.

Overrides ProcessorInterface::postProcess

File

core/modules/aggregator/tests/modules/aggregator_test/src/Plugin/aggregator/processor/TestProcessor.php, line 124

Class

TestProcessor
Defines a default processor implementation.

Namespace

Drupal\aggregator_test\Plugin\aggregator\processor

Code

public function postProcess(FeedInterface $feed) {
  // Double the refresh rate.
  $feed->refresh->value *= 2;
  $feed->save();
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.