public function Rss::render in Podcast (using Views) 8
Render the display in this style.
Overrides Rss::render
File
- src/
Plugin/ views/ style/ Rss.php, line 359
Class
- Rss
- Default style plugin to render an RSS feed.
Namespace
Drupal\podcast\Plugin\views\styleCode
public function render() {
$build = parent::render();
$this->podcast_elements = array_merge($this
->getPodcastElements(), isset($this->podcast_elements) ? $this->podcast_elements : []);
return $build;
}