class AggregatorRefresh

Same name and namespace in other branches
  1. 9 core/modules/aggregator/src/Plugin/QueueWorker/AggregatorRefresh.php \Drupal\aggregator\Plugin\QueueWorker\AggregatorRefresh

Updates a feed's items.

Plugin annotation


@QueueWorker(
  id = "aggregator_feeds",
  title = @Translation("Aggregator refresh"),
  cron = {"time" = 60}
)

Hierarchy

Expanded class hierarchy of AggregatorRefresh

File

core/modules/aggregator/src/Plugin/QueueWorker/AggregatorRefresh.php, line 17

Namespace

Drupal\aggregator\Plugin\QueueWorker
View source
class AggregatorRefresh extends QueueWorkerBase {
    
    /**
     * {@inheritdoc}
     */
    public function processItem($data) {
        if ($data instanceof FeedInterface) {
            $data->refreshItems();
        }
    }

}

Members

Title Sort descending Modifiers Object type Summary
AggregatorRefresh::processItem public function

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