You are here

public function Rss::preRender in Drupal 9

Same name in this branch
  1. 9 core/modules/node/src/Plugin/views/row/Rss.php \Drupal\node\Plugin\views\row\Rss::preRender()
  2. 9 core/modules/comment/src/Plugin/views/row/Rss.php \Drupal\comment\Plugin\views\row\Rss::preRender()
Same name and namespace in other branches
  1. 8 core/modules/comment/src/Plugin/views/row/Rss.php \Drupal\comment\Plugin\views\row\Rss::preRender()

Allow the style to do stuff before each row is rendered.

Parameters

$result: The full array of results from the query.

Overrides RowPluginBase::preRender

File

core/modules/comment/src/Plugin/views/row/Rss.php, line 42

Class

Rss
Plugin which formats the comments as RSS items.

Namespace

Drupal\comment\Plugin\views\row

Code

public function preRender($result) {
  $cids = [];
  foreach ($result as $row) {
    $cids[] = $row->cid;
  }
  $this->comments = $this->entityTypeManager
    ->getStorage('comment')
    ->loadMultiple($cids);
}