You are here

public function views_plugin_display::render in Views (for Drupal 7) 7.3

Same name and namespace in other branches
  1. 6.3 plugins/views_plugin_display.inc \views_plugin_display::render()
  2. 6.2 plugins/views_plugin_display.inc \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 2811
Definition of views_plugin_display.

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,
  ));
}