Subject: [PATCH] Allow RSS row items to be altered --- Index: core/modules/views/src/Plugin/views/row/RssFields.php IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP <+>UTF-8 =================================================================== diff --git a/core/modules/views/src/Plugin/views/row/RssFields.php b/core/modules/views/src/Plugin/views/row/RssFields.php --- a/core/modules/views/src/Plugin/views/row/RssFields.php (revision bd132d31e1609affd79cc24bdd26940b0b93873d) +++ b/core/modules/views/src/Plugin/views/row/RssFields.php (date 1737050690622) @@ -172,6 +172,13 @@ } } + $hook_context = [ + 'view' => $this->view, + 'row_index' => $row_index, + 'plugin' => $this, + ]; + \Drupal::moduleHandler()->alter('rss_item', $item, $row, $hook_context); + $build = [ '#theme' => $this->themeFunctions(), '#view' => $this->view,