You are here

public function TestProcessor::postProcess in Drupal 9

Same name and namespace in other branches
  1. 8 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

See also

aggregator_refresh()

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();
}