public function Rss::preRender in Drupal 8
Same name in this branch
- 8 core/modules/node/src/Plugin/views/row/Rss.php \Drupal\node\Plugin\views\row\Rss::preRender()
- 8 core/modules/comment/src/Plugin/views/row/Rss.php \Drupal\comment\Plugin\views\row\Rss::preRender()
Same name and namespace in other branches
- 9 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\rowCode
public function preRender($result) {
$cids = [];
foreach ($result as $row) {
$cids[] = $row->cid;
}
$this->comments = $this->entityTypeManager
->getStorage('comment')
->loadMultiple($cids);
}