You are here

function views_plugin_display::render in Views (for Drupal 7) 6.2

Same name and namespace in other branches
  1. 6.3 plugins/views_plugin_display.inc \views_plugin_display::render()
  2. 7.3 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 1827
Contains the base display plugin.

Class

views_plugin_display
The default display plugin handler. Display plugins handle options and basic mechanisms for different output methods.

Code

function render() {
  return theme($this
    ->theme_functions(), $this->view);
}