function views_plugin_display_feed::render in Views (for Drupal 7) 6.3
Same name and namespace in other branches
- 6.2 plugins/views_plugin_display_feed.inc \views_plugin_display_feed::render()
- 7.3 plugins/views_plugin_display_feed.inc \views_plugin_display_feed::render()
Instead of going through the standard views_view.tpl.php, delegate this to the style handler.
Overrides views_plugin_display::render
File
- plugins/
views_plugin_display_feed.inc, line 42 - Contains the feed display plugin.
Class
- views_plugin_display_feed
- The plugin that handles a feed, such as RSS or atom.
Code
function render() {
return $this->view->style_plugin
->render($this->view->result);
}