You are here

public function Feed::render in Views (for Drupal 7) 8.3

Instead of going through the standard views_view.tpl.php, delegate this to the style handler.

Overrides DisplayPluginBase::render

File

lib/Drupal/views/Plugin/views/display/Feed.php, line 90
Definition of Drupal\views\Plugin\views\display\Feed.

Class

Feed
The plugin that handles a feed, such as RSS or atom.

Namespace

Drupal\views\Plugin\views\display

Code

public function render() {
  return $this->view->style_plugin
    ->render($this->view->result);
}