function views_plugin_display::render
Render this display.
1 method overrides views_plugin_display::render()
- views_plugin_display_feed::render in plugins/
views_plugin_display_feed.inc - Instead of going through the standard views_view.tpl.php, delegate this to the style handler.
File
-
plugins/
views_plugin_display.inc, line 2808
Class
- views_plugin_display
- The default display plugin handler. Display plugins handle options and basic mechanisms for different output methods.
Code
public function render() {
return theme($this->theme_functions(), array(
'view' => $this->view,
));
}